Validate method

  1. @override
void Validate()
override
Validate request.

Implementation

@override
void Validate() {
  super.Validate();

  if (!StringUtils.IsNullOrEmpty(this.Watermark)) {
    throw new ArgumentException(
        "Watermarks cannot be used with StreamingSubscriptions., Watermark");
  }
}