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

GetCurrentAgentOutboundContact() private method

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