32 references to EncodedName
System.ServiceModel.Primitives (32)
System\ServiceModel\Description\ContractDescription.cs (1)
55
get { return _name.
EncodedName
; }
System\ServiceModel\Description\FaultDescription.cs (1)
31
get { return _name.
EncodedName
; }
System\ServiceModel\Description\MessageBodyDescription.cs (1)
52
get { return _wrapperName == null ? null : _wrapperName.
EncodedName
; }
System\ServiceModel\Description\MessagePartDescription.cs (1)
70
get { return XmlName.
EncodedName
; }
System\ServiceModel\Description\OperationDescription.cs (1)
147
get { return XmlName.
EncodedName
; }
System\ServiceModel\Description\ServiceEndpoint.cs (2)
82
return _name.
EncodedName
;
86
return String.Format(CultureInfo.InvariantCulture, "{0}_{1}", new XmlName(Binding.Name).
EncodedName
, Contract.Name);
System\ServiceModel\Description\ServiceReflector.cs (5)
92
return new XmlQualifiedName(xmlName.
EncodedName
, ns);
316
return string.Equals(
EncodedName
, xmlName.
EncodedName
, StringComparison.Ordinal);
342
if (string.IsNullOrEmpty(
EncodedName
))
347
return
EncodedName
.GetHashCode();
System\ServiceModel\Description\TypeLoader.cs (15)
681
return new XmlName(operationName.
EncodedName
+ ResponseSuffix, true /*isEncoded*/);
882
opAttr.EnsureInvariants(methodInfo, operationName.
EncodedName
);
884
Collection<OperationDescription> operations = contractDescription.Operations.FindAll(operationName.
EncodedName
);
972
OperationDescription operationDescription = new OperationDescription(operationName.
EncodedName
, declaringContract);
991
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SRP.Format(SRP.OneWayAndFaultsIncompatible2, methodInfo.DeclaringType.FullName, operationName.
EncodedName
)));
998
CheckDuplicateFaultContract(operationDescription.Faults, faultDescription, operationName.
EncodedName
);
1275
messageDescription.Body.WrapperName = wrapperName.
EncodedName
;
1288
parameterPart = new MessagePartDescription(name.
EncodedName
, defaultNS);
1320
messageDescription.Body.WrapperName = GetWrapperName(messageContractAttribute.WrapperName, messageDescription.MessageName).
EncodedName
;
1470
partDescription = new MessagePartDescription(defaultName.
EncodedName
, defaultNS);
1477
partDescription = new MessagePartDescription(partName.
EncodedName
, partNs);
1505
headerDescription = new MessageHeaderDescription(headerName.
EncodedName
, headerNs);
1506
headerDescription.UniquePartName = defaultName.
EncodedName
;
1553
MessagePropertyDescription propertyDescription = new MessagePropertyDescription(propertyName.
EncodedName
);
1566
return new XmlName(methodName.
EncodedName
+ ReturnSuffix, true);
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (4)
406
if (_reply != null && IsRpc && Operation.IsValidateRpcWrapperName && !skipVerifyXsdElementName && _reply.BodyMapping.XsdElementName != responseName.
EncodedName
)
408
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SRP.Format(SRP.SFxRpcMessageBodyPartNameInvalid, Operation.Name, Operation.Messages[1].MessageName, _reply.BodyMapping.XsdElementName, responseName.
EncodedName
)));
618
MessagePartDescription part = new MessagePartDescription(xmlName.
EncodedName
, string.Empty);
702
return ImportMembersMapping(faultElementName.
EncodedName
, faultNamespace, members, false /*hasWrapperElement*/, IsRpc, mappingKey);
System\ServiceModel\Dispatcher\FaultContractInfo.cs (1)
27
ElementName = elementName.
EncodedName
;