Akka.Cluster.Tools.Client.ClusterClient.Send.Send C# (CSharp) Method

Send() public method

public Send ( string path, object message, bool localAffinity = false ) : System
path string
message object
localAffinity bool
return System
            public Send(string path, object message, bool localAffinity = false)
            {
                Path = path;
                Message = message;
                LocalAffinity = localAffinity;
            }
        }
ClusterClient.Send