本文整理汇总了C#中Mono.ILASM.CodeGen.IsThisAssembly方法的典型用法代码示例。如果您正苦于以下问题:C# CodeGen.IsThisAssembly方法的具体用法?C# CodeGen.IsThisAssembly怎么用?C# CodeGen.IsThisAssembly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mono.ILASM.CodeGen
的用法示例。
在下文中一共展示了CodeGen.IsThisAssembly方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Run
public bool Run ()
{
if (il_file_list.Count == 0)
Usage ();
if (output_file == null)
output_file = CreateOutputFilename ();
try {
codegen = new CodeGen (output_file, target == Target.Dll, debugging_info);
foreach (string file_path in il_file_list) {
Report.FilePath = file_path;
ProcessFile (file_path);
}
if (scan_only)
return true;
if (Report.ErrorCount > 0)
return false;
if (target != Target.Dll && !codegen.HasEntryPoint)
Report.Error ("No entry point found.");
// if we have a key and aren't assembling a netmodule
if ((keyname != null) && !codegen.IsThisAssembly (null)) {
LoadKey ();
// this overrides any attribute or .publickey directive in the source
codegen.ThisAssembly.SetPublicKey (sn.PublicKey);
}
try {
codegen.Write ();
} catch {
File.Delete (output_file);
throw;
}
} catch (ILAsmException e) {
Error (e.ToString ());
return false;
} catch (PEAPI.PEFileException pe) {
Error ("Error : " + pe.Message);
return false;
}
try {
if (sn != null) {
Report.Message ("Signing assembly with the specified strongname keypair");
return Sign (output_file);
}
} catch {
return false;
}
return true;
}
示例2: IsSuppressUnmanaged
public bool IsSuppressUnmanaged (CodeGen codegen)
{
string asmname = "";
BaseTypeRef owner = method_ref.Owner;
if (owner == null)
return false;
ExternTypeRef etr = owner as ExternTypeRef;
if (etr != null) {
ExternAssembly ea = etr.ExternRef as ExternAssembly;
if (ea != null)
asmname = ea.Name;
}
return (owner.FullName == "System.Security.SuppressUnmanagedCodeSecurityAttribute"
&& (asmname == "mscorlib" || codegen.IsThisAssembly ("mscorlib")) );
}