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