You've already forked linux-packaging-mono
Imported Upstream version 5.12.0.220
Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
This commit is contained in:
parent
8bd104cef2
commit
8fc30896db
@@ -664,21 +664,19 @@ mono_domain_set (MonoDomain *domain, gboolean force)
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">MonoReflectionAssembly*
|
||||
mono_domain_try_type_resolve (MonoDomain *domain, char *name, MonoObject *tb)
|
||||
mono_domain_try_type_resolve (MonoDomain *domain, char *name, MonoObject *typebuilder)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
<div class="mapi-section">Parameters</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>domain</i></td><td> application domainwhere the name where the type is going to be resolved</td></tr><tr><td><i>name</i></td><td> the name of the type to resolve or <code>NULL</code>.</td></tr><tr><td><i>tb</i></td><td> A <code>System.Reflection.Emit.TypeBuilder</code>, used if name is <code>NULL</code>.</td></tr></tbody></table> <div class="mapi-section">Return value</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>domain</i></td><td> application domain in which to resolve the type</td></tr><tr><td><i>name</i></td><td> the name of the type to resolve or <code>NULL</code>.</td></tr><tr><td><i>typebuilder</i></td><td> A <code>System.Reflection.Emit.TypeBuilder</code>, used if name is <code>NULL</code>.</td></tr></tbody></table> <div class="mapi-section">Return value</div>
|
||||
<div> A <code>MonoReflectionAssembly</code> or <code>NULL</code> if not found
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div>
|
||||
<p />
|
||||
This routine invokes the internal <code>System.AppDomain.DoTypeResolve</code> and returns
|
||||
the assembly that matches name.
|
||||
<p />
|
||||
If <i>name</i> is null, the value of <code>((TypeBuilder)tb).FullName</code> is used instead
|
||||
the assembly that matches name, or ((TypeBuilder)typebuilder).FullName.
|
||||
<p /></div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
|
@@ -640,7 +640,7 @@ mono_marshal_get_ptr_to_struct (MonoClass *klass)
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">MonoMethod*
|
||||
mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTarget target_type)
|
||||
mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTarget target_type, MonoError *error)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
@@ -658,7 +658,7 @@ mono_marshal_get_remoting_invoke_for_target (MonoMethod *method, MonoRemotingTar
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">MonoMethod*
|
||||
mono_marshal_get_remoting_invoke (MonoMethod *method)
|
||||
mono_marshal_get_remoting_invoke (MonoMethod *method, MonoError *error)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
@@ -676,7 +676,7 @@ mono_marshal_get_remoting_invoke (MonoMethod *method)
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">MonoMethod*
|
||||
mono_marshal_get_remoting_invoke_with_check (MonoMethod *method)
|
||||
mono_marshal_get_remoting_invoke_with_check (MonoMethod *method, MonoError *error)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
@@ -833,7 +833,7 @@ mono_marshal_get_unbox_wrapper (MonoMethod *method)
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">MonoMethod*
|
||||
mono_marshal_get_xappdomain_invoke (MonoMethod *method)
|
||||
mono_marshal_get_xappdomain_invoke (MonoMethod *method, MonoError *error)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
@@ -993,7 +993,7 @@ mono_loader_unlock (void)
|
||||
|
||||
<div class="mapi-declaration mapi-section">Syntax</div>
|
||||
<div class="mapi-prototype">void*
|
||||
mono_gc_alloc_fixed (size_t size, MonoGCDescriptor descr, MonoGCRootSource source, const char *msg)
|
||||
mono_gc_alloc_fixed (size_t size, MonoGCDescriptor descr, MonoGCRootSource source, void *key, const char *msg)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
|
@@ -412,6 +412,16 @@ mono_method_desc_full_match (MonoMethodDesc *desc, MonoMethod *method)
|
||||
|
||||
</div>
|
||||
<p />
|
||||
<div class="mapi-section">Parameters</div>
|
||||
<table class="mapi-parameters"><tbody><tr><td><i>desc</i></td><td> A method description that you created with mono_method_desc_new</td></tr><tr><td><i>method</i></td><td> a MonoMethod instance that you want to match against</td></tr></tbody></table> <div class="mapi-section">Return value</div>
|
||||
<div> <code>TRUE</code> if the specified method matches the specified description, <code>FALSE</code> otherwise.
|
||||
</div>
|
||||
<div class="mapi-section">Description</div>
|
||||
<div>
|
||||
<p />
|
||||
This method is used to check whether the method matches the provided
|
||||
description, by making sure that the method matches both the class and the method parameters.
|
||||
<p /></div>
|
||||
</div><!--mapi-description -->
|
||||
</div><!--height container -->
|
||||
</div> <!-- class=mapi -->
|
||||
|
Reference in New Issue
Block a user