File: System\Deployment\Application\ReferenceIdentity.cs
Project: System.Deployment.dll (System.Deployment)
#region Assembly System.Deployment, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Deployment.dll
#endregion
 
using System.Deployment.Internal.Isolation;
using System.Reflection;
 
namespace System.Deployment.Application
{
    [DefaultMember("Item")]
    internal class ReferenceIdentity : ICloneable
    {
        public ReferenceIdentity();
        public ReferenceIdentity(IReferenceIdentity idComPtr);
        public ReferenceIdentity(string text);
 
        public string this[string name] { get; set; }
 
        public IDENTITY_ATTRIBUTE[] Attributes { get; }
        public IReferenceIdentity ComPointer { get; }
        public string Culture { get; }
        public ulong Hash { get; }
        public string Name { get; }
        public string ProcessorArchitecture { get; set; }
        public string PublicKeyToken { get; }
        public Version Version { get; }
 
        public object Clone();
        public override bool Equals(object obj);
        public override int GetHashCode();
        public override string ToString();
    }
}