次の方法で共有


RandomNumberGenerator.Create メソッド

定義

暗号乱数ジェネレーターの実装のインスタンスを作成します。

オーバーロード

Create()

ランダムなデータを生成するために使用できる暗号乱数ジェネレーターの、既定の実装のインスタンスを作成します。

Create(String)
古い.

暗号乱数ジェネレーターの指定した実装のインスタンスを作成します。

Create()

ソース:
RandomNumberGenerator.cs
ソース:
RandomNumberGenerator.cs
ソース:
RandomNumberGenerator.cs

ランダムなデータを生成するために使用できる暗号乱数ジェネレーターの、既定の実装のインスタンスを作成します。

public:
 static System::Security::Cryptography::RandomNumberGenerator ^ Create();
public static System.Security.Cryptography.RandomNumberGenerator Create ();
static member Create : unit -> System.Security.Cryptography.RandomNumberGenerator
Public Shared Function Create () As RandomNumberGenerator

戻り値

暗号乱数ジェネレーターの新しいインスタンス。

こちらもご覧ください

適用対象

Create(String)

ソース:
RandomNumberGenerator.cs
ソース:
RandomNumberGenerator.cs
ソース:
RandomNumberGenerator.cs

注意事項

Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.

暗号乱数ジェネレーターの指定した実装のインスタンスを作成します。

public:
 static System::Security::Cryptography::RandomNumberGenerator ^ Create(System::String ^ rngName);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RandomNumberGenerator? Create (string rngName);
[System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.RandomNumberGenerator? Create (string rngName);
public static System.Security.Cryptography.RandomNumberGenerator Create (string rngName);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : string -> System.Security.Cryptography.RandomNumberGenerator
[<System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : string -> System.Security.Cryptography.RandomNumberGenerator
static member Create : string -> System.Security.Cryptography.RandomNumberGenerator
Public Shared Function Create (rngName As String) As RandomNumberGenerator

パラメーター

rngName
String

使用する乱数ジェネレーターの実装の名前。

戻り値

暗号乱数ジェネレーターの新しいインスタンス。

属性

こちらもご覧ください

適用対象