ShootBlues.Script.JabberGateway.IMessageGateway C# (CSharp) Method

IMessageGateway() private method

private IMessageGateway ( string endpoint, string message ) : bool
endpoint string
message string
return bool
        bool IMessageGateway.Send(string endpoint, string message)
        {
            if (Endpoints.ContainsKey(endpoint)) {
                GetQueue(endpoint).Enqueue(message);
                return true;
            }

            return false;
        }

Same methods

JabberGateway::IMessageGateway ( ) : string[]