ShootBlues.Script.JabberGateway.IMessageGateway C# (CSharp) 메소드

IMessageGateway() 개인적인 메소드

private IMessageGateway ( string endpoint, string message ) : bool
endpoint string
message string
리턴 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[]