System.Security.Cryptography.ECDsa.ExportParameters C# (CSharp) Метод

ExportParameters() публичный Метод

When overridden in a derived class, exports the named or explicit ECParameters for an ECCurve. If the curve has a name, the Curve property will contain named curve parameters otherwise it will contain explicit parameters.
public ExportParameters ( bool includePrivateParameters ) : System.Security.Cryptography.ECParameters
includePrivateParameters bool true to include private parameters, otherwise, false.
Результат System.Security.Cryptography.ECParameters
        public virtual ECParameters ExportParameters(bool includePrivateParameters)
        {
            throw new NotSupportedException(SR.NotSupported_SubclassOverride);
        }

Usage Example

Пример #1
0
 public override ECParameters ExportParameters(bool includePrivateParameters) =>
 _wrapped.ExportParameters(includePrivateParameters);