CertificateRequestProperties.FriendlyName Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il nome visualizzato del certificato registrato.
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
Valore della proprietà
Nome visualizzato.
Esempio
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;
}
Commenti
Per impostazione predefinita, questo valore è una stringa vuota. FriendlyName