CertificateRequestProperties.Subject Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece el nombre del firmante.
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
Valor de propiedad
Nombre distintivo X.500 (DN).
Ejemplos
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;
}
Comentarios
Este valor es un nombre distintivo X.500 (DN). Puede ser una cadena DN completa que contenga uno o varios nombres distintivos relativos (RDN) con el formato "CN=;OU=,.." o el nombre del firmante puede ser una cadena simple que contenga el componente de nombre común (CN) del DN completo.