ThrowIfNotSupportedByRequestedServerVersion method
void
ThrowIfNotSupportedByRequestedServerVersion()
Implementation
void ThrowIfNotSupportedByRequestedServerVersion() {
if (this.Service.RequestedServerVersion.index <
this.GetMinimumRequiredServerVersion().index) {
throw new ServiceVersionException("""string.Format(
Strings.RequestIncompatibleWithRequestVersion,
this.GetXmlElementName(),
this.GetMinimumRequiredServerVersion())""");
}
}