ServiceObjectPropertyDefinition.withUri constructor

ServiceObjectPropertyDefinition.withUri(
  1. String? uri
)
Initializes a new instance of the The URI.

Implementation

ServiceObjectPropertyDefinition.withUri(String? uri) : super() {
  EwsUtilities.Assert(!StringUtils.IsNullOrEmpty(uri),
      "ServiceObjectPropertyDefinition.ctor", "uri is null or empty");
  this._uri = uri;
}