Sdílet prostřednictvím


RandomNumberGenerator.Create Metoda

Definice

Vytvoří instanci implementace kryptografického generátoru náhodných čísel.

Přetížení

Create()

Vytvoří instanci výchozí implementace kryptografického generátoru náhodných čísel, který lze použít ke generování náhodných dat.

Create(String)
Zastaralé.

Vytvoří instanci zadané implementace kryptografického generátoru náhodných čísel.

Create()

Zdroj:
RandomNumberGenerator.cs
Zdroj:
RandomNumberGenerator.cs
Zdroj:
RandomNumberGenerator.cs

Vytvoří instanci výchozí implementace kryptografického generátoru náhodných čísel, který lze použít ke generování náhodných dat.

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

Návraty

Nová instance kryptografického generátoru náhodných čísel.

Viz také

Platí pro

Create(String)

Zdroj:
RandomNumberGenerator.cs
Zdroj:
RandomNumberGenerator.cs
Zdroj:
RandomNumberGenerator.cs

Upozornění

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

Vytvoří instanci zadané implementace kryptografického generátoru náhodných čísel.

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

Parametry

rngName
String

Název implementace generátoru náhodných čísel, který se má použít.

Návraty

Nová instance kryptografického generátoru náhodných čísel.

Atributy

Viz také

Platí pro