Dovico.TrackITAPI.CAssignment.GetInfo(System.String,Dovico.TrackITAPI.CStateInfo)
Function Overview:
Returns the information for an assignment specified by sXml in the format getinfo.xsd
Parameter List:
sXml - string - xml in the format getinfo.xsd for the assignment we are retrieving information for
siState - CStateInfo - state information needed to process the transaction
Returns
A string of xml containing the assignment information including overtime assignment information.
Example:
// initialize a string of xml containing the ID of the assignment to retrieve information for
string sXml = "<GetInfo:ID xmlns:GetInfo=\"http://www.dovico.com/schemas/getinfo.xsd\">1129</GetInfo:ID>";
// call the method
string sAssignmentInfo = wsapi.MethodInvoke("AssignmentGetInfo", sXml, stToken);