Freigeben über


SignatureDescription.FormatterAlgorithm-Eigenschaft

Ruft den Formatierungsalgorithmus für die Signaturbeschreibung ab oder legt diesen fest.

Namespace: System.Security.Cryptography
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Property FormatterAlgorithm As String
'Usage
Dim instance As SignatureDescription
Dim value As String

value = instance.FormatterAlgorithm

instance.FormatterAlgorithm = value
public string FormatterAlgorithm { get; set; }
public:
property String^ FormatterAlgorithm {
    String^ get ();
    void set (String^ value);
}
/** @property */
public String get_FormatterAlgorithm ()

/** @property */
public void set_FormatterAlgorithm (String value)
public function get FormatterAlgorithm () : String

public function set FormatterAlgorithm (value : String)

Eigenschaftenwert

Der Formatierungsalgorithmus für die Signaturbeschreibung.

Beispiel

Im folgenden Codebeispiel wird veranschaulicht, wie die FormatterAlgorithm-Eigenschaft mit dem RSAPKCS1-Formatierungsprogramm festgelegt wird. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die SignatureDescription-Klasse.

signatureDescription.FormatterAlgorithm = _
    "System.Security.Cryptography.RSAPKCS1SignatureFormatter"
signatureDescription.FormatterAlgorithm =
    "System.Security.Cryptography.RSAPKCS1SignatureFormatter";
signatureDescription->FormatterAlgorithm = L"System.Security.Cryptography.RSAPKCS1SignatureFormatter";
signatureDescription.set_FormatterAlgorithm(
    "System.Security.Cryptography.RSAPKCS1SignatureFormatter");

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0

Siehe auch

Referenz

SignatureDescription-Klasse
SignatureDescription-Member
System.Security.Cryptography-Namespace

Weitere Ressourcen

Kryptografische Dienste