1 write to ContractNS
System.ServiceModel (1)
System\ServiceModel\Description\OperationGenerator.cs (1)
133
this.
ContractNS
= context.Operation.DeclaringContract.Namespace;
6 references to ContractNS
System.ServiceModel (6)
System\ServiceModel\Description\OperationGenerator.cs (6)
134
this.DefaultNS = (style == OperationFormatStyle.Rpc) ? string.Empty : this.
ContractNS
;
281
CodeNamespace ns = this.Context.ServiceContractGenerator.NamespaceManager.EnsureNamespace(this.
ContractNS
);
909
if (!StringEqualOrNull(parent.Request.Body.WrapperNamespace, parent.
ContractNS
))
910
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ParameterModeException(SR.GetString(SR.SFxCannotImportAsParameters_DifferentWrapperNs, parent.Request.MessageName, parent.Request.Body.WrapperNamespace, parent.
ContractNS
)));
918
if (!StringEqualOrNull(parent.Response.Body.WrapperNamespace, parent.
ContractNS
))
919
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ParameterModeException(SR.GetString(SR.SFxCannotImportAsParameters_DifferentWrapperNs, parent.Response.MessageName, parent.Response.Body.WrapperNamespace, parent.
ContractNS
)));