Compartir a través de


CertificateRequestProperties.FriendlyName Propiedad

Definición

Obtiene o establece el nombre para mostrar del certificado inscrito.

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

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

Valor de propiedad

String

Platform::String

winrt::hstring

El nombre para mostrar.

Ejemplos

public String GetSetDisplayName(String strDisplayNameIn)
{
    // Create a new CertificateRequestProperties object.
    CertificateRequestProperties reqProperties = new CertificateRequestProperties();
    
    // The default value is an empty string.
    String defaultName = reqProperties.FriendlyName;

    // If the input option does not equal the default option, reset the property value.
    if (strDisplayNameIn != defaultName)
    {
        reqProperties.FriendlyName = strDisplayNameIn;
    }

    // Return the display name.
    return reqProperties.FriendlyName;

}

Comentarios

De forma predeterminada, este valor es una cadena vacía. FriendlyName

Se aplica a