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

RecordOnDemandStart() private method

private RecordOnDemandStart ( int AgentLogin, string AppData, int &RecordId ) : int
AgentLogin int
AppData string
RecordId int
return int
        public int RecordOnDemandStart(int AgentLogin, string AppData, out int RecordId) {
            object[] results = this.Invoke("RecordOnDemandStart", new object[] {
                        AgentLogin,
                        AppData});
            RecordId = ((int)(results[1]));
            return ((int)(results[0]));
        }
        
AgentServiceService