System.Security.Cryptography.ECDsa.ToXmlString C# (CSharp) Method

ToXmlString() public method

public ToXmlString ( bool includePrivateParameters ) : string
includePrivateParameters bool
return string
        public override string ToXmlString(bool includePrivateParameters)
        {
            throw new NotImplementedException(SR.Cryptography_ECXmlSerializationFormatRequired);
        }
    }

Usage Example

コード例 #1
0
ファイル: ECDsaWrapper.cs プロジェクト: z77ma/runtime
 public override string ToXmlString(bool includePrivateParameters) =>
 _wrapped.ToXmlString(includePrivateParameters);