ProviderEndpointUrl property

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

Implementation

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

Implementation

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