Opc.Ua.Core
SubjectName Property (CertificateIdentifier)



Opc.Ua Namespace > CertificateIdentifier Class : SubjectName Property
The certificate's subject name - the distinguished name of an X509 certificate.
Syntax
'Declaration
 
<DataMemberAttribute(IsRequired=False, 
   EmitDefaultValue=False, 
   Order=4)>
Public Property SubjectName As String
'Usage
 
Dim instance As CertificateIdentifier
Dim value As String
 
instance.SubjectName = value
 
value = instance.SubjectName
[DataMember(IsRequired=false, 
   EmitDefaultValue=false, 
   Order=4)]
public string SubjectName {get; set;}
[DataMember(IsRequired=false, 
   EmitDefaultValue=false, 
   Order=4)]
public:
property String^ SubjectName {
   String^ get();
   void set (    String^ value);
}

Property Value

The distinguished name of an X509 certificate acording to the Abstract Syntax Notation One (ASN.1) syntax.
Remarks
The subject field identifies the entity associated with the public key stored in the subject public key field. The subject name MAY be carried in the subject field and/or the subjectAltName extension. Where it is non-empty, the subject field MUST contain an X.500 distinguished name (DN). Name is defined by the following ASN.1 structures: Name ::= CHOICE {RDNSequence } RDNSequence ::= SEQUENCE OF RelativeDistinguishedName RelativeDistinguishedName ::= SET OF AttributeTypeAndValue AttributeTypeAndValue ::= SEQUENCE {type AttributeType, value AttributeValue } AttributeType ::= OBJECT IDENTIFIER AttributeValue ::= ANY DEFINED BY AttributeType DirectoryString ::= CHOICE { teletexString TeletexString (SIZE (1..MAX)), printableString PrintableString (SIZE (1..MAX)), universalString UniversalString (SIZE (1..MAX)), utf8String UTF8String (SIZE (1..MAX)), bmpString BMPString (SIZE (1..MAX)) } The Name describes a hierarchical name composed of attributes, such as country name, and corresponding values, such as US. The type of the component AttributeValue is determined by the AttributeType; in general it will be a DirectoryString. String X.500 AttributeType: This notation is designed to be convenient for common forms of name. This section gives a few examples of distinguished names written using this notation. First is a name containing three relative distinguished names (RDNs): CN=Steve Kille,O=Isode Limited,C=GB RFC 3280 Internet X.509 Public Key Infrastructure, April 2002 RFC 2253 LADPv3 Distinguished Names, December 1997
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CertificateIdentifier Class
CertificateIdentifier Members
System.Security.Cryptography.X509Certificates.X500DistinguishedName
System.Security.Cryptography.AsnEncodedData