StrongNamePublicKeyBlob
Represents the public key information (called a blob) for a strong name. This class cannot be inherited.
namespace System.Security.Permissions
{
[Obsolete("Code Access Security is not supported or honored by the runtime.", DiagnosticId = "SYSLIB0003", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
public sealed class StrongNamePublicKeyBlob
{
public StrongNamePublicKeyBlob(byte[] publicKey)
{
}
public override bool Equals(object o)
{
return base.Equals(o);
}
public override int GetHashCode()
{
return base.GetHashCode();
}
public override string ToString()
{
return base.ToString();
}
}
}