PostProcessResponses method

void PostProcessResponses(
  1. GetUserSettingsResponseCollection responses
)
Post-process responses to GetUserSettings. The GetUserSettings responses.

Implementation

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