System.Security.Cryptography.ECDiffieHellman.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

Beispiel #1
0
 public override string ToXmlString(bool includePrivateParameters) =>
 _wrapped.ToXmlString(includePrivateParameters);