AdjustServiceUriFromCredentials method

Uri AdjustServiceUriFromCredentials(
  1. Uri uri
)
Adjusts the service URI based on the current type of credentials. The URI.

Implementation

Uri AdjustServiceUriFromCredentials(Uri uri) {
  return (this.Credentials != null) ? this.Credentials!.AdjustUrl(uri) : uri;
}