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

GetCurrentAgentInboundContact() private method

private GetCurrentAgentInboundContact ( int AgentLogin, TWSAgentContactInbound &InboundContact ) : int
AgentLogin int
InboundContact TWSAgentContactInbound
return int
        public int GetCurrentAgentInboundContact(int AgentLogin, out TWSAgentContactInbound InboundContact) {
            object[] results = this.Invoke("GetCurrentAgentInboundContact", new object[] {
                        AgentLogin});
            InboundContact = ((TWSAgentContactInbound)(results[1]));
            return ((int)(results[0]));
        }
        
AgentServiceService