22 references to DecodedName
dotnet-svcutil-lib (22)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ContractDescription.cs (1)
47
get { return _name.
DecodedName
; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (4)
2031
membersMapping = _soapImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2036
membersMapping = _xmlImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2051
membersMapping = _soapImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
2053
membersMapping = _xmlImporter.ImportMembersMapping(memberName.
DecodedName
, memberNs, new SoapSchemaMember[] { schemaMember });
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessagePartDescription.cs (1)
81
get { return _name.
DecodedName
; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationDescription.cs (1)
213
get { return _name.
DecodedName
; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (2)
312
string messageName = XmlName.IsNullOrEmpty(message.MessageName) ? null : message.MessageName.
DecodedName
;
598
string messageName = XmlName.IsNullOrEmpty(messageDescription.MessageName) ? null : messageDescription.MessageName.
DecodedName
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (2)
1101
FaultDescription fault = new FaultDescription(NamingHelper.GetMessageAction(contractName, operationName.
DecodedName
+ faultName.
DecodedName
, attr.Action, false/*isResponse*/));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (1)
966
string wsdlOperationMessageDecodedName = WsdlNamingHelper.GetOperationMessageName(wsdlOperationMessage).
DecodedName
;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (10)
528
elementName = new XmlQualifiedName(faultElementName.
DecodedName
, faultNamespace);
533
string mappingKey = "fault:" + faultElementName.
DecodedName
+ ":" + faultNamespace;
577
string mappingName = elementName.
DecodedName
;
828
member.MemberName = (memberName ?? elementName).
DecodedName
;
860
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(isWrapped ? SRServiceModel.SFxInvalidXmlAttributeInWrapped : SRServiceModel.SFxInvalidXmlAttributeInBare, invalidAttributeType, elementName.
DecodedName
)));
862
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxXmlArrayNotAllowedForMultiple, elementName.
DecodedName
, ns)));
873
member.XmlAttributes.XmlArray.ElementName = elementName.
DecodedName
;
880
member.XmlAttributes.XmlArray.ElementName = elementName.
DecodedName
;
891
elementAttribute.ElementName = elementName.
DecodedName
;
901
elementAttribute.ElementName = elementName.
DecodedName
;