本文整理匯總了C#中System.Security.Permissions.StrongNamePublicKeyBlob類的典型用法代碼示例。如果您正苦於以下問題:C# StrongNamePublicKeyBlob類的具體用法?C# StrongNamePublicKeyBlob怎麽用?C# StrongNamePublicKeyBlob使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
StrongNamePublicKeyBlob類屬於System.Security.Permissions命名空間,在下文中一共展示了StrongNamePublicKeyBlob類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: FromXml
// Convert an XML value into a permissions value.
public override void FromXml(SecurityElement esd)
{
if(esd == null)
{
throw new ArgumentNullException("esd");
}
if(esd.Attribute("version") != "1")
{
throw new ArgumentException(_("Arg_PermissionVersion"));
}
name = esd.Attribute("Name");
String value = esd.Attribute("Version");
if(value != null)
{
version = new Version(value);
}
else
{
version = null;
}
value = esd.Attribute("PublicKeyBlob");
if(value != null)
{
blob = new StrongNamePublicKeyBlob(value);
}
else
{
blob = null;
}
}
示例2: PublicKey
public void PublicKey ()
{
StrongNamePublicKeyBlob snpkb = new StrongNamePublicKeyBlob (pk);
Assert.IsTrue (snpkb.Equals (snpkb), "Equals(Self)");
Assert.IsFalse (snpkb.Equals (null), "Equals(null)");
Assert.AreEqual ("00240000048000009400000006020000002400005253413100040000010001003DBD7208C62B0EA8C1C058072B635F7C9ABDCB22DB20B2A9DADAEFE800642F5D8DEB7802F7A5367728D7558D1468DBEB2409D02B131B926E2E59544AAC18CFC909023F4FA83E94001FC2F11A27477D1084F514B861621A0C66ABD24C4B9FC90F3CD8920FF5FFCED76E5C6FB1F57DD356F96727A4A5485B079344004AF8FFA4CB", snpkb.ToString (), "ToString(pk)");
StrongNamePublicKeyBlob snpkb2 = new StrongNamePublicKeyBlob (pk);
Assert.IsTrue (snpkb.Equals (snpkb2), "Equals()-true");
StrongNamePublicKeyBlob snpkb3 = new StrongNamePublicKeyBlob (bad);
Assert.IsFalse (snpkb.Equals (snpkb3), "Equals()-false");
// non standard get hash code - why ???
Assert.AreEqual (snpkb2.GetHashCode (), snpkb.GetHashCode (), "GetHashCode-0");
// the first 4 bytes has code has been fixed in 2.0 beta 1
// Historical data:
// #elif NET_1_1
// // It seems to be the first four bytes of the public key data
// // which seems like non sense as all valid public key will have the same header ?
// Assert.AreEqual (2359296, snpkb.GetHashCode (), "GetHashCode-1");
// Assert.AreEqual (2359296, snpkb2.GetHashCode (), "GetHashCode-2");
// Assert.AreEqual (2989, snpkb3.GetHashCode (), "GetHashCode-3");
// byte[] header = { 0x00, 0x24, 0x00, 0x00 };
// StrongNamePublicKeyBlob snpkb4 = new StrongNamePublicKeyBlob (header);
// Assert.AreEqual (2359296, snpkb4.GetHashCode (), "GetHashCode-4");
// #endif
}
示例3: Equals
internal bool Equals( StrongNamePublicKeyBlob blob )
{
if (blob == null)
return false;
else
return CompareArrays( this.PublicKey, blob.PublicKey );
}
示例4: StrongName
internal StrongName(StrongNamePublicKeyBlob blob, string name, System.Version version, Assembly assembly)
{
if (name == null)
{
throw new ArgumentNullException("name");
}
if (string.IsNullOrEmpty(name))
{
throw new ArgumentException(Environment.GetResourceString("Argument_EmptyStrongName"));
}
if (blob == null)
{
throw new ArgumentNullException("blob");
}
if (version == null)
{
throw new ArgumentNullException("version");
}
RuntimeAssembly assembly2 = assembly as RuntimeAssembly;
if ((assembly != null) && (assembly2 == null))
{
throw new ArgumentException(Environment.GetResourceString("Argument_MustBeRuntimeAssembly"), "assembly");
}
this.m_publicKeyBlob = blob;
this.m_name = name;
this.m_version = version;
this.m_assembly = assembly2;
}
示例5: GetUnion
private StrongNameIdentityPermission GetUnion ()
{
StrongNamePublicKeyBlob blob = new StrongNamePublicKeyBlob (ecma);
StrongNameIdentityPermission snip = new StrongNameIdentityPermission (blob, "mono", new Version (1, 2, 3, 4));
StrongNamePublicKeyBlob blob2 = new StrongNamePublicKeyBlob (new byte[16]);
StrongNameIdentityPermission diffPk = new StrongNameIdentityPermission (blob2, "mono", new Version (1, 2, 3, 4));
return (StrongNameIdentityPermission)snip.Union (diffPk);
}
示例6: StrongNameIdentityPermission
/// <include file='doc\StrongNameIdentityPermission.uex' path='docs/doc[@for="StrongNameIdentityPermission.StrongNameIdentityPermission1"]/*' />
public StrongNameIdentityPermission( StrongNamePublicKeyBlob blob, String name, Version version )
{
if (blob == null)
throw new ArgumentNullException( "blob" );
m_publicKeyBlob = blob;
m_name = name;
m_version = version;
}
示例7: StrongNameMembershipCondition
public StrongNameMembershipCondition (StrongNamePublicKeyBlob blob, string name, Version version)
{
if (blob == null)
throw new ArgumentNullException ("blob");
this.blob = blob;
this.name = name;
if (version != null)
assemblyVersion = (Version) version.Clone ();
}
示例8: ArgumentNullException
public StrongNameMembershipCondition
(StrongNamePublicKeyBlob blob, String name, Version version)
{
if(blob == null)
{
throw new ArgumentNullException("blob");
}
this.blob = blob;
this.name = name;
this.version = version;
}
示例9: StrongNameIdentityPermission
public StrongNameIdentityPermission(StrongNamePublicKeyBlob blob, string name, System.Version version)
{
if (blob == null)
{
throw new ArgumentNullException("blob");
}
if ((name != null) && name.Equals(""))
{
throw new ArgumentException(Environment.GetResourceString("Argument_EmptyStrongName"));
}
this.m_unrestricted = false;
this.m_strongNames = new StrongName2[] { new StrongName2(blob, name, version) };
}
開發者ID:pritesh-mandowara-sp,項目名稱:DecompliedDotNetLibraries,代碼行數:13,代碼來源:StrongNameIdentityPermission.cs
示例10: StrongName
public StrongName (StrongNamePublicKeyBlob blob, string name, Version version)
{
if (blob == null)
throw new ArgumentNullException ("blob");
if (name == null)
throw new ArgumentNullException ("name");
if (version == null)
throw new ArgumentNullException ("version");
if (name.Length == 0)
throw new ArgumentException (Locale.GetText ("Empty"), "name");
publickey = blob;
this.name = name;
this.version = version;
}
示例11: StrongNameMembershipCondition
public StrongNameMembershipCondition(StrongNamePublicKeyBlob blob, string name, System.Version version)
{
if (blob == null)
{
throw new ArgumentNullException("blob");
}
if ((name != null) && name.Equals(""))
{
throw new ArgumentException(Environment.GetResourceString("Argument_EmptyStrongName"));
}
this.m_publicKeyBlob = blob;
this.m_name = name;
this.m_version = version;
}
開發者ID:pritesh-mandowara-sp,項目名稱:DecompliedDotNetLibraries,代碼行數:14,代碼來源:StrongNameMembershipCondition.cs
示例12: StrongName
/// <include file='doc\StrongName.uex' path='docs/doc[@for="StrongName.StrongName1"]/*' />
public StrongName( StrongNamePublicKeyBlob blob, String name, Version version )
{
if (name == null)
throw new ArgumentNullException( "name" );
if (blob == null)
throw new ArgumentNullException( "blob" );
if ((Object) version == null)
throw new ArgumentNullException( "version" );
m_publicKeyBlob = blob;
m_name = name;
m_version = version;
}
示例13: StrongName
public StrongName( StrongNamePublicKeyBlob blob, String name, Version version )
{
if (name == null)
throw new ArgumentNullException( "name" );
if (name.Equals( "" ))
throw new ArgumentException( Environment.GetResourceString( "Argument_EmptyStrongName" ) );
if (blob == null)
throw new ArgumentNullException( "blob" );
if (version == null)
throw new ArgumentNullException( "version" );
m_publicKeyBlob = blob;
m_name = name;
m_version = version;
}
示例14: GetStrongName
public static StrongName GetStrongName(Assembly assembly)
{
if (assembly == null)
throw new ArgumentNullException("assembly");
AssemblyName assemblyName = assembly.GetName();
Debug.Assert(assemblyName != null, "Could not get assembly name");
// Get the public key blob.
byte[] publicKey = assemblyName.GetPublicKey();
if (publicKey == null || publicKey.Length == 0)
throw new InvalidOperationException("Assembly is not strongly named");
var keyBlob = new StrongNamePublicKeyBlob(publicKey);
// Return the strong name.
return new StrongName(keyBlob, assemblyName.Name, assemblyName.Version);
}
示例15: StrongName
// Constructor.
public StrongName(StrongNamePublicKeyBlob blob,
String name, Version version)
{
if(blob == null)
{
throw new ArgumentNullException("blob");
}
if(name == null)
{
throw new ArgumentNullException("name");
}
if(version == null)
{
throw new ArgumentNullException("version");
}
this.blob = blob;
this.name = name;
this.version = version;
}