다음을 통해 공유


ECDiffieHellmanCng.ToXmlString 메서드

정의

키 정보를 XML 문자열로 serialize합니다.

오버로드

ToXmlString(Boolean)

이 메서드가 구현되지 않은 경우

ToXmlString(ECKeyXmlFormat)
사용되지 않음.

지정된 형식을 사용하여 키 정보를 XML 문자열로 serialize합니다.

ToXmlString(Boolean)

이 메서드가 구현되지 않은 경우

public:
 override System::String ^ ToXmlString(bool includePrivateParameters);
public override string ToXmlString (bool includePrivateParameters);
override this.ToXmlString : bool -> string
Public Overrides Function ToXmlString (includePrivateParameters As Boolean) As String

매개 변수

includePrivateParameters
Boolean

private 매개 변수를 포함하려면 true이고, 그렇지 않으면 false입니다.

반환

해당 사항 없음

예외

이 인스턴스에서 이 메서드가 재정의되지 않은 경우

설명

현재 키를 XML 표현으로 변환하려면 오버로드를 ToXmlString(ECKeyXmlFormat) 대신 사용합니다.

적용 대상

ToXmlString(ECKeyXmlFormat)

Source:
Cng.NotSupported.cs
Source:
Cng.NotSupported.cs
Source:
Cng.NotSupported.cs

주의

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 문자열로 serialize합니다.

public:
 System::String ^ ToXmlString(System::Security::Cryptography::ECKeyXmlFormat format);
public string ToXmlString (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 string ToXmlString (System.Security.Cryptography.ECKeyXmlFormat format);
override this.ToXmlString : System.Security.Cryptography.ECKeyXmlFormat -> string
[<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.ToXmlString : System.Security.Cryptography.ECKeyXmlFormat -> string
Public Function ToXmlString (format As ECKeyXmlFormat) As String

매개 변수

format
ECKeyXmlFormat

XML 문자열의 형식을 지정하는 열거형 값 중 하나입니다. 현재 사용 가능한 형식은 Rfc4050뿐입니다.

반환

요청된 형식에 따라 XML 문자열로 serialize한 키 정보가 들어 있는 문자열 개체입니다.

특성

예외

format에 지정된 형식이 잘못된 경우. Rfc4050 값만 사용할 수 있습니다.

.NET Core 및 .NET 5 이상: 모든 경우에.

적용 대상