AgentWebServiceSample.PcoAgentWS.AgentServiceService.Logout C# (CSharp) Method

Logout() private method

private Logout ( int AgentLogin, int ReasonCode ) : int
AgentLogin int
ReasonCode int
return int
        public int Logout(int AgentLogin, int ReasonCode) {
            object[] results = this.Invoke("Logout", new object[] {
                        AgentLogin,
                        ReasonCode});
            return ((int)(results[0]));
        }
        
AgentServiceService