Class PartialTrustAssemblyName
Represents a full name of an assembly which can also be obtained in partial trust environments.
Inheritance
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public sealed class PartialTrustAssemblyName : Object
Constructors
PartialTrustAssemblyName(String)
Initializes a new instance of the PartialTrustAssemblyName class.
Declaration
public PartialTrustAssemblyName(string assemblyFullName)
Parameters
System.String
assemblyFullName
The full name of the assembly to get the name components from. |
Properties
CultureInfo
Gets or sets the culture supported by the assembly.
Declaration
public string CultureInfo { get; }
Property Value
System.String
A System.Globalization.CultureInfo object representing the culture supported by the assembly. |
Name
Gets or sets the simple name of the assembly. This is usually, but not necessarily, the file name of the manifest file of the assembly, minus its extension.
Declaration
public string Name { get; }
Property Value
System.String
A string that is the simple name of the assembly.. |
PublicKeyToken
Gets the public key token, which is the last 8 bytes of the SHA-1 hash of the public key under which the application or assembly is signed.
Declaration
public string PublicKeyToken { get; }
Property Value
System.String
An string containing the public key token. |
Version
Gets or sets the major, minor, build, and revision numbers of the assembly.
Declaration
public string Version { get; }
Property Value
System.String
A System.Version object representing the major, minor, build, and revision numbers of the assembly. |