DSACryptoServiceProvider.ExportParameters メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Public Overrides Function ExportParameters ( _ includePrivateParameters As Boolean _ ) As DSAParameters
Dim instance As DSACryptoServiceProvider Dim includePrivateParameters As Boolean Dim returnValue As DSAParameters returnValue = instance.ExportParameters(includePrivateParameters)
戻り値
DSA のパラメータ。


DSACryptoServiceProvider オブジェクトから DSAParameters オブジェクトにキー情報をエクスポートするコード例を次に示します。
Try 'Create a new DSACryptoServiceProvider object. Dim DSA As New DSACryptoServiceProvider() 'Export the key information to an DSAParameters object. 'Pass false to export the public key information or pass 'true to export public and private key information. Dim DSAParams As DSAParameters = DSA.ExportParameters(False) Catch e As CryptographicException 'Catch this exception in case the encryption did 'not succeed. Console.WriteLine(e.Message) End Try
try { //Create a new DSACryptoServiceProvider object. DSACryptoServiceProvider DSA = new DSACryptoServiceProvider(); //Export the key information to an DSAParameters object. //Pass false to export the public key information or pass //true to export public and private key information. DSAParameters DSAParams = DSA.ExportParameters(false); } catch(CryptographicException e) { //Catch this exception in case the encryption did //not succeed. Console.WriteLine(e.Message); }
try { //Create a new DSACryptoServiceProvider object. DSACryptoServiceProvider^ DSA = gcnew DSACryptoServiceProvider; //Export the key information to an DSAParameters object. //Pass false to export the public key information or pass //true to export public and private key information. DSAParameters DSAParams = DSA->ExportParameters( false ); } catch ( CryptographicException^ e ) { //Catch this exception in case the encryption did //not succeed. Console::WriteLine( e->Message ); }
try { // Create a new DSACryptoServiceProvider object. DSACryptoServiceProvider dsa = new DSACryptoServiceProvider(); // Export the key information to an DSAParameters object. // Pass false to export the public key information or pass // true to export public and private key information. DSAParameters dsaParams = dsa.ExportParameters(false); } catch (CryptographicException e) { // Catch this exception in case the encryption did // not succeed. Console.WriteLine(e.get_Message()); }


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDSACryptoServiceProvider.ExportParameters メソッドを検索する場合は、下記のリンクをクリックしてください。

- DSACryptoServiceProvider.ExportParameters メソッドのページへのリンク