ProviderEndpointUrl property

String? get ProviderEndpointUrl
Gets or sets the URL of the attachment provider.

Implementation

String? get ProviderEndpointUrl => this._providerEndpointUrl;
set ProviderEndpointUrl (String? value)

Implementation

set ProviderEndpointUrl(String? value) {
  if (this.CanSetFieldValue(this._providerEndpointUrl, value)) {
    this._providerEndpointUrl = value;
    this.Changed();
  }
}