Click or drag to resize

AdministrationClientSelectCardBulkLoadHistory Method

Syntax
C#
public ResultOfCardBulkLoadHistory SelectCardBulkLoadHistory(
	ManagementGroupRequestOfCardBulkLoadHistorySelect request
)

Parameters

request
Type: AdministrationServiceManagementGroupRequestOfCardBulkLoadHistorySelect

Return Value

Type: ResultOfCardBulkLoadHistory
Examples
C#
using (var svc = new AdministrationService.AdministrationClient())
{
  var request = new AdministrationService.ManagementGroupRequestOfCardBulkLoadHistorySelect();
  request.Token = "Token";//Required - Token returned from AccountService.ManagementGroupLogin
  request.ManagementGroup = "Management group";//Required - ManagementGroup supplied when calling AccountService.ManagementGroupLogin

  var cardBulkLoadHistorySelect = new AdministrationService.CardBulkLoadHistorySelect();
  cardBulkLoadHistorySelect.BatchControlRSN = new Guid("0cd2b473-1f16-4882-a629-3e9e5120b5c3");; //Required
  cardBulkLoadHistorySelect.CardBulkLoadHistoryRSN = new Guid("7a887a3a-7a8a-465c-b674-b00c724d4c68");; //Required

  request.Value = cardBulkLoadHistorySelect;
  AdministrationService.ResultOfCardBulkLoadHistory result = svc.SelectCardBulkLoadHistory(request);

  if (result.FaultCode == 0)
  {
    //Request succeeded
  }
  else
  {
    //Request failed          
    throw new Exception(result.FaultDescription);
  }
}
See Also