InternalValidate method

void InternalValidate(
  1. ServiceRequestBase request
)
Validates this view.

Implementation

void InternalValidate(ServiceRequestBase request) {
  if (this.PropertySet != null) {
    this.PropertySet!.InternalValidate();
    this
        .PropertySet!
        .ValidateForRequest(request, true /*summaryPropertiesOnly*/);
  }
}