Partager via


CertificateRequestProperties.Subject Propriété

Définition

Obtient ou définit le nom de l’objet.

public:
 property Platform::String ^ Subject { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring Subject();

void Subject(winrt::hstring value);
public string Subject { get; set; }
var string = certificateRequestProperties.subject;
certificateRequestProperties.subject = string;
Public Property Subject As String

Valeur de propriété

String

Platform::String

winrt::hstring

Nom unique (DN) X.500.

Exemples

public String GetSetSubjectName(String strNameIn)
{
    // Create a new CertificateRequestProperties object.
    CertificateRequestProperties reqProperties = new CertificateRequestProperties();

    // The default value is an empty string.
    String strDefaultName = reqProperties.Subject;

    // If the input option does not equal the default option, reset the property value.
    if (strNameIn != strDefaultName)
    {
        reqProperties.Subject = strNameIn;
    }

    // Return the subject name.
    return reqProperties.Subject;
}

Remarques

Cette valeur est un nom unique (DN) X.500. Il peut s’agir d’une chaîne DN complète qui contient un ou plusieurs noms uniques relatifs (RDN) au format « CN=;OU=,.. », ou le nom de l’objet peut être une chaîne simple qui contient le composant nom commun (CN) du nom complet.

S’applique à