7 references to TypeOfXmlQualifiedName
dotnet-svcutil-lib (7)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (3)
1220
CodeMemberField typeNameField = new CodeMemberField(Globals.
TypeOfXmlQualifiedName
, s_typeNameFieldName);
1225
typeNameField.InitExpression = new CodeObjectCreateExpression(Globals.
TypeOfXmlQualifiedName
, new CodePrimitiveExpression(typeName.Name), new CodePrimitiveExpression(typeName.Namespace));
1642
getSchemaStaticMethod.ReturnType = GetCodeTypeReference(Globals.
TypeOfXmlQualifiedName
);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaExporter.cs (2)
62
if (!(Globals.
TypeOfXmlQualifiedName
.IsAssignableFrom(getMethod.ReturnType)))
63
throw /*System.Runtime.Serialization.*/DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(string.Format(SRSerialization.InvalidReturnTypeOnGetSchemaMethod, DataContract.GetClrTypeFullName(clrType), methodName, DataContract.GetClrTypeFullName(getMethod.ReturnType), DataContract.GetClrTypeFullName(Globals.
TypeOfXmlQualifiedName
))));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlFormatWriterGenerator.cs (1)
664
return type == Globals.
TypeOfXmlQualifiedName
&& (ns != null && ns.Value != null && ns.Value.Length > 0);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (1)
362
else if (valueType == Globals.
TypeOfXmlQualifiedName
)