AssemblyName.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233
  1. namespace System.Reflection
  2. {
  3. public sealed partial class AssemblyName : System.ICloneable, System.Runtime.Serialization.IDeserializationCallback, System.Runtime.Serialization.ISerializable
  4. {
  5. public AssemblyName() { }
  6. public AssemblyName(string assemblyName) { }
  7. public string CodeBase { get { throw null; } set { } }
  8. public System.Reflection.AssemblyContentType ContentType { get { throw null; } set { } }
  9. public System.Globalization.CultureInfo CultureInfo { get { throw null; } set { } }
  10. public string CultureName { get { throw null; } set { } }
  11. public string EscapedCodeBase { get { throw null; } }
  12. public System.Reflection.AssemblyNameFlags Flags { get { throw null; } set { } }
  13. public string FullName { get { throw null; } }
  14. public System.Configuration.Assemblies.AssemblyHashAlgorithm HashAlgorithm { get { throw null; } set { } }
  15. public System.Reflection.StrongNameKeyPair KeyPair { get { throw null; } set { } }
  16. public string Name { get { throw null; } set { } }
  17. public System.Reflection.ProcessorArchitecture ProcessorArchitecture { get { throw null; } set { } }
  18. public System.Version Version { get { throw null; } set { } }
  19. public System.Configuration.Assemblies.AssemblyVersionCompatibility VersionCompatibility { get { throw null; } set { } }
  20. public object Clone() { throw null; }
  21. public static System.Reflection.AssemblyName GetAssemblyName(string assemblyFile) { throw null; }
  22. public void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { }
  23. public byte[] GetPublicKey() { throw null; }
  24. public byte[] GetPublicKeyToken() { throw null; }
  25. public void OnDeserialization(object sender) { }
  26. public static bool ReferenceMatchesDefinition(System.Reflection.AssemblyName reference, System.Reflection.AssemblyName definition) { throw null; }
  27. public void SetPublicKey(byte[] publicKey) { }
  28. public void SetPublicKeyToken(byte[] publicKeyToken) { }
  29. public override string ToString() { throw null; }
  30. internal static string EscapeCodeBase (string codebase) { throw null; }
  31. }
  32. }