本文整理匯總了C#中Mono.Cecil.ModuleDefinition.HasImage方法的典型用法代碼示例。如果您正苦於以下問題:C# ModuleDefinition.HasImage方法的具體用法?C# ModuleDefinition.HasImage怎麽用?C# ModuleDefinition.HasImage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mono.Cecil.ModuleDefinition
的用法示例。
在下文中一共展示了ModuleDefinition.HasImage方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetHasCustomAttributes
public static bool GetHasCustomAttributes(
this ICustomAttributeProvider self,
/*Telerik Authorship*/ ref bool? variable,
ModuleDefinition module)
{
return module.HasImage () && module.Read (ref variable, self, (provider, reader) => reader.HasCustomAttributes (provider)) == true;
}
示例2: GetHasGenericParameters
public static bool GetHasGenericParameters (
this IGenericParameterProvider self,
/*Telerik Authorship*/ ref bool? variable,
ModuleDefinition module)
{
return module.HasImage () && module.Read (ref variable, self, (provider, reader) => reader.HasGenericParameters (provider)) == true;
}
示例3: GetHasCustomAttributes
public static bool GetHasCustomAttributes (
this ICustomAttributeProvider self,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (self, (provider, reader) => reader.HasCustomAttributes (provider))
: false;
}
示例4: GetCustomAttributes
public static Collection<CustomAttribute> GetCustomAttributes(
this ICustomAttributeProvider self,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (self, (provider, reader) => reader.ReadCustomAttributes (provider))
: new Collection<CustomAttribute> ();
}
示例5: GetHasGenericParameters
public static bool GetHasGenericParameters (
this IGenericParameterProvider self,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (self, (provider, reader) => reader.HasGenericParameters (provider))
: false;
}
示例6: GetGenericParameters
public static Collection<GenericParameter> GetGenericParameters (
this IGenericParameterProvider self,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (self, (provider, reader) => reader.ReadGenericParameters (provider))
: new Collection<GenericParameter> ();
}
示例7: GetGenericParameters
public static Collection<GenericParameter> GetGenericParameters (
this IGenericParameterProvider self,
ref Collection<GenericParameter> collection,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (ref collection, self, (provider, reader) => reader.ReadGenericParameters (provider))
: collection = new GenericParameterCollection (self);
}
示例8: GetCustomAttributes
public static Collection<CustomAttribute> GetCustomAttributes(
this ICustomAttributeProvider self,
/*Telerik Authorship*/ ref Collection<CustomAttribute> variable,
ModuleDefinition module)
{
/*Telerik Authorship*/
return module.HasImage ()
? module.Read (ref variable, self, (provider, reader) => reader.ReadCustomAttributes (provider))
: variable = new Collection<CustomAttribute>();
}
示例9: ResolveConstant
public static void ResolveConstant(
this IConstantProvider self,
/*Telerik Authorship*/ ref ConstantValue constant,
ModuleDefinition module)
{
/*Telerik Authorship*/
lock (module.SyncRoot) {
if (constant != Mixin.NotResolved)
return;
if (module.HasImage ())
constant = module.Read (self, (provider, reader) => reader.ReadConstant (provider));
else
constant = Mixin.NoValue;
}
}
示例10: ResolveConstant
public static void ResolveConstant(
this IConstantProvider self,
out object constant,
out ElementType element_type,
ModuleDefinition module)
{
if (module.HasImage ()) {
ElementType etype = 0;
constant = module.Read (self, (provider, reader) => reader.ReadConstant (provider, out etype));
element_type = etype;
}
else {
constant = Mixin.NoValue;
element_type = ElementType.NotInitialized;
}
}
示例11: GetSecurityDeclarations
public static Collection<SecurityDeclaration> GetSecurityDeclarations (
this ISecurityDeclarationProvider self,
ref Collection<SecurityDeclaration> variable,
ModuleDefinition module)
{
return module.HasImage ()
? module.Read (ref variable, self, (provider, reader) => reader.ReadSecurityDeclarations (provider))
: variable = new Collection<SecurityDeclaration>();
}
示例12: GetHasSecurityDeclarations
public static bool GetHasSecurityDeclarations (
this ISecurityDeclarationProvider self,
ModuleDefinition module)
{
return module.HasImage () && module.Read (self, (provider, reader) => reader.HasSecurityDeclarations (provider));
}
示例13: GetHasSecurityDeclarations
public static bool GetHasSecurityDeclarations(
this ISecurityDeclarationProvider self,
/*Telerik Authorship*/ ref bool? variable,
ModuleDefinition module)
{
return module.HasImage () && module.Read (ref variable, self, (provider, reader) => reader.HasSecurityDeclarations (provider)) == true;
}