AutodiscoverUrl method

Future<void> AutodiscoverUrl(
  1. String emailAddress
)
Initializes the Url property to the Exchange Web Services URL for the specified e-mail address by calling the Autodiscover service. The email address to use.

Implementation

Future<void> AutodiscoverUrl(String emailAddress) {
  return this.AutodiscoverUrlWithCallback(
      emailAddress, this.DefaultAutodiscoverRedirectionUrlValidationCallback);
}