/// <inheritdoc /> public ClientRef ClientOf(string path) { Requires.NotNullOrWhitespace(path, nameof(path)); var endpoint = ClientEndpoint.Proxy(path, grainFactory); return(new ClientRef(endpoint)); }
public static ClientRef Deserialize(string path) => new ClientRef(path, ClientEndpoint.Proxy(path));
public ClientRef(SerializationInfo info, StreamingContext context) { Path = (string)info.GetValue("path", typeof(string)); endpoint = ClientEndpoint.Proxy(Path); }
public new static ClientRef Deserialize(string path) { return(new ClientRef(path, ClientEndpoint.Proxy(path))); }