CertificateRequestProperties.FriendlyName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
登録済み証明書の表示名を取得または設定します。
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
プロパティ値
表示名です。
例
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;
}
注釈
既定では、この値は空の文字列です。 FriendlyName