27 references to DecodedName
System.ServiceModel (27)
System\ServiceModel\ComIntegration\ComPlusTypeLoader.cs (2)
220
operationName.
DecodedName
,
225
operationName.
DecodedName
,
System\ServiceModel\Description\ContractDescription.cs (1)
47
get { return this.name.
DecodedName
; }
System\ServiceModel\Description\MessageContractImporter.cs (4)
2044
membersMapping = soapImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2049
membersMapping = xmlImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2064
membersMapping = soapImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2066
membersMapping = xmlImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
System\ServiceModel\Description\MessagePartDescription.cs (1)
82
get { return this.name.
DecodedName
; }
System\ServiceModel\Description\OperationDescription.cs (1)
217
get { return name.
DecodedName
; }
System\ServiceModel\Description\OperationGenerator.cs (2)
314
string messageName = XmlName.IsNullOrEmpty(message.MessageName) ? null : message.MessageName.
DecodedName
;
601
string messageName = XmlName.IsNullOrEmpty(messageDescription.MessageName) ? null : messageDescription.MessageName.
DecodedName
;
System\ServiceModel\Description\TypeLoader.cs (2)
1053
FaultDescription fault = new FaultDescription(NamingHelper.GetMessageAction(contractName, operationName.
DecodedName
+ faultName.
DecodedName
, attr.Action, false/*isResponse*/));
System\ServiceModel\Description\WsdlImporter.cs (1)
969
string wsdlOperationMessageDecodedName = WsdlNamingHelper.GetOperationMessageName(wsdlOperationMessage).
DecodedName
;
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (13)
624
elementName = new XmlQualifiedName(faultElementName.
DecodedName
, faultNamespace);
629
string mappingKey = "fault:" + faultElementName.
DecodedName
+ ":" + faultNamespace;
687
string mappingName = elementName.
DecodedName
;
949
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxMultiplePartsNotAllowedInEncoded, elementName.
DecodedName
, ns)));
952
member.MemberName = (memberName ?? elementName).
DecodedName
;
979
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidSoapAttribute, invalidAttributeType, elementName.
DecodedName
)));
982
member.SoapAttributes.SoapElement = new SoapElementAttribute(elementName.
DecodedName
);
1007
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(isWrapped ? SR.SFxInvalidXmlAttributeInWrapped : SR.SFxInvalidXmlAttributeInBare, invalidAttributeType, elementName.
DecodedName
)));
1009
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxXmlArrayNotAllowedForMultiple, elementName.
DecodedName
, ns)));
1021
member.XmlAttributes.XmlArray.ElementName = elementName.
DecodedName
;
1028
member.XmlAttributes.XmlArray.ElementName = elementName.
DecodedName
;
1039
elementAttribute.ElementName = elementName.
DecodedName
;
1049
elementAttribute.ElementName = elementName.
DecodedName
;