PostProcessResponses method

void PostProcessResponses(
  1. GetDomainSettingsResponseCollection responses
)
Post-process responses to GetDomainSettings. The GetDomainSettings responses.

Implementation

/* private */
void PostProcessResponses(GetDomainSettingsResponseCollection responses) {
  // Note:The response collection may not include all of the requested domains if the request has been throttled.
  for (int index = 0; index < responses.Count; index++) {
    responses[index].Domain = this.Domains![index];
  }
}