ECDsaCng.FromXmlString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 XML 字串還原序列化金鑰資訊。
多載
FromXmlString(String, ECKeyXmlFormat) |
已淘汰.
使用指定的格式從 XML 字串還原金鑰資訊的序列化。 |
FromXmlString(String) |
這個方法尚未實作。 |
FromXmlString(String, ECKeyXmlFormat)
警告
ToXmlString and FromXmlString have no implementation for ECC types, and are obsolete. Use a standard import and export format such as ExportSubjectPublicKeyInfo or ImportSubjectPublicKeyInfo for public keys and ExportPkcs8PrivateKey or ImportPkcs8PrivateKey for private keys.
使用指定的格式從 XML 字串還原金鑰資訊的序列化。
public:
void FromXmlString(System::String ^ xml, System::Security::Cryptography::ECKeyXmlFormat format);
public void FromXmlString (string xml, System.Security.Cryptography.ECKeyXmlFormat format);
[System.Obsolete("ToXmlString and FromXmlString have no implementation for ECC types, and are obsolete. Use a standard import and export format such as ExportSubjectPublicKeyInfo or ImportSubjectPublicKeyInfo for public keys and ExportPkcs8PrivateKey or ImportPkcs8PrivateKey for private keys.", DiagnosticId="SYSLIB0042", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public void FromXmlString (string xml, System.Security.Cryptography.ECKeyXmlFormat format);
override this.FromXmlString : string * System.Security.Cryptography.ECKeyXmlFormat -> unit
[<System.Obsolete("ToXmlString and FromXmlString have no implementation for ECC types, and are obsolete. Use a standard import and export format such as ExportSubjectPublicKeyInfo or ImportSubjectPublicKeyInfo for public keys and ExportPkcs8PrivateKey or ImportPkcs8PrivateKey for private keys.", DiagnosticId="SYSLIB0042", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
override this.FromXmlString : string * System.Security.Cryptography.ECKeyXmlFormat -> unit
Public Sub FromXmlString (xml As String, format As ECKeyXmlFormat)
參數
- xml
- String
要序列化的 XML 索引鍵資訊。
- format
- ECKeyXmlFormat
其中一個列舉值,指定 XML 字串的格式。 目前唯一接受的格式為 Rfc4050。
- 屬性
例外狀況
xml
為 null
。
format
指定了無效的格式。 唯一接受的值為 Rfc4050。
所有其他錯誤。
適用於
FromXmlString(String)
這個方法尚未實作。
public:
override void FromXmlString(System::String ^ xmlString);
public override void FromXmlString (string xmlString);
override this.FromXmlString : string -> unit
Public Overrides Sub FromXmlString (xmlString As String)
參數
- xmlString
- String
要序列化的 XML 索引鍵資訊。
例外狀況
這個執行個體不會覆寫這個方法。
備註
若要還原串行化 XML 索引鍵,請改用 FromXmlString(String, ECKeyXmlFormat) 多載。