共用方式為


CryptoConfig.AddAlgorithm(Type, String[]) 方法

定義

在演算法對應中加入一組名稱,供目前的應用程式定義域使用。

public:
 static void AddAlgorithm(Type ^ algorithm, ... cli::array <System::String ^> ^ names);
public static void AddAlgorithm (Type algorithm, params string[] names);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static void AddAlgorithm (Type algorithm, params string[] names);
[System.Security.SecurityCritical]
public static void AddAlgorithm (Type algorithm, params string[] names);
static member AddAlgorithm : Type * string[] -> unit
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member AddAlgorithm : Type * string[] -> unit
[<System.Security.SecurityCritical>]
static member AddAlgorithm : Type * string[] -> unit
Public Shared Sub AddAlgorithm (algorithm As Type, ParamArray names As String())

參數

algorithm
Type

要對應的演算法。

names
String[]

要對應至演算法的名稱陣列。

屬性

例外狀況

algorithmnames 參數為 null

algorithm 無法從組件外部存取。

-或-

names 參數中的一個項目是空的或 null

備註

指定的對應優先於內建對應,以及 machine.config 檔案中的對應。 對應可用來防止部分信任程序代碼使用受信任的密碼編譯作業。

適用於