EditorClient.Client.Send C# (CSharp) Méthode

Send() public méthode

public Send ( string message ) : void
message string
Résultat void
        public void Send(string message)
        {
            if (IsSending)
                throw new Exception("Cannot call send while doing SendAndWait, make up your mind");
            lock (queue)
            {
                queue.Enqueue(message);
                if(!IsSending) {
                    SendFromQueue();
                }
            }
        }