Retrieves the keys and names of all the service call types.
Public Function GetServiceCallTypeList() As ServiceCallTypeParamsCollection
ServiceCallTypeParamsCollection callTypeParamsCollection = callTypesService.GetServiceCallTypeList(); int i = 1; foreach (ServiceCallTypeParams typeParams in callTypeParamsCollection) { Console.WriteLine("item {0}: CallTypeId:{1}, Name:{2}", i++, typeParams.CallTypeID, typeParams.Name); }
ServiceCallTypesService Object