共用方式為


GrainClient.Initialize 方法

定義

多載

Initialize(IPEndPoint, Boolean)
已淘汰.

使用提供的閘道位址,從標準用戶端組態檔初始化用戶端執行時間。 組態檔中指定的任何閘道位址都會被忽略,並改用提供的閘道位址。

Initialize(String)

從提供的用戶端組態檔初始化用戶端執行時間。 如果讀取指定的組態檔時發生錯誤,初始化就會失敗。

Initialize()

從標準用戶端組態檔初始化用戶端執行時間。

Initialize(ClientConfiguration)

從提供的用戶端組態物件初始化用戶端執行時間。 如果組態物件為 null,初始化就會失敗。

Initialize(FileInfo)

從提供的用戶端組態檔初始化用戶端執行時間。 如果讀取指定的組態檔時發生錯誤,初始化就會失敗。

Initialize(IPEndPoint, Boolean)

警告

This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173

使用提供的閘道位址,從標準用戶端組態檔初始化用戶端執行時間。 組態檔中指定的任何閘道位址都會被忽略,並改用提供的閘道位址。

[System.Obsolete("This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173")]
public static void Initialize (System.Net.IPEndPoint gatewayAddress, bool overrideConfig = true);
public static void Initialize (System.Net.IPEndPoint gatewayAddress, bool overrideConfig = true);
[<System.Obsolete("This method is obsolete and will be removed in a future release. If it is needed, reimplement this method according to its source: https://github.com/dotnet/orleans/blob/8f067e77f115c0599eff00c2bdc6f37f2adbc58d/src/Orleans/Core/GrainClient.cs#L173")>]
static member Initialize : System.Net.IPEndPoint * bool -> unit
static member Initialize : System.Net.IPEndPoint * bool -> unit
Public Shared Sub Initialize (gatewayAddress As IPEndPoint, Optional overrideConfig As Boolean = true)

參數

gatewayAddress
IPEndPoint

閘道定址接收器的 IP 位址和埠

overrideConfig
Boolean

指定的閘道端點是否應該覆寫/取代組態檔中的值,還是加總

屬性

適用於

Initialize(String)

從提供的用戶端組態檔初始化用戶端執行時間。 如果讀取指定的組態檔時發生錯誤,初始化就會失敗。

public static void Initialize (string configFilePath);
static member Initialize : string -> unit
Public Shared Sub Initialize (configFilePath As String)

參數

configFilePath
String

用戶端組態檔的相對或絕對路徑名稱。

適用於

Initialize()

從標準用戶端組態檔初始化用戶端執行時間。

public static void Initialize ();
static member Initialize : unit -> unit
Public Shared Sub Initialize ()

適用於

Initialize(ClientConfiguration)

從提供的用戶端組態物件初始化用戶端執行時間。 如果組態物件為 null,初始化就會失敗。

public static void Initialize (Orleans.Runtime.Configuration.ClientConfiguration config);
static member Initialize : Orleans.Runtime.Configuration.ClientConfiguration -> unit
Public Shared Sub Initialize (config As ClientConfiguration)

參數

config
ClientConfiguration

ClientConfiguration 物件。

適用於

Initialize(FileInfo)

從提供的用戶端組態檔初始化用戶端執行時間。 如果讀取指定的組態檔時發生錯誤,初始化就會失敗。

public static void Initialize (System.IO.FileInfo configFile);
static member Initialize : System.IO.FileInfo -> unit
Public Shared Sub Initialize (configFile As FileInfo)

參數

configFile
FileInfo

用戶端組態檔。

適用於