12 instantiations of TypeDesc
System.Xml (12)
System\Xml\Serialization\SoapSchemaImporter.cs (2)
298
structMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Struct, baseTypeDesc, flags);
559
enumMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Enum, null, 0);
System\Xml\Serialization\Types.cs (6)
321
nullableTypeDesc = new
TypeDesc
("NullableOf" + this.name, "System.Nullable`1[" + this.fullName + "]", null, TypeKind.Struct, this, this.flags | TypeFlags.OptionalValue, this.formatterName);
364
arrayTypeDesc = new
TypeDesc
(null, name + "[]", fullName + "[]", TypeKind.Array, null, TypeFlags.Reference | (flags & TypeFlags.UseReflection), this);
369
TypeDesc newTypeDesc = new
TypeDesc
(extension.Name, extension.Name, null, this.kind, this.baseTypeDesc, this.flags, null);
583
TypeDesc typeDesc = new
TypeDesc
(type, true, dataType, formatterName, flags);
599
TypeDesc typeDesc = new
TypeDesc
(type, false, dataType, formatterName, flags);
830
typeDesc = new
TypeDesc
(type, CodeIdentifier.MakeValid(TypeName(type)), type.ToString(), kind, null, flags, null);
System\Xml\Serialization\XmlSchemaImporter.cs (4)
581
structMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Struct, baseTypeDesc, flags);
629
structMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Struct, baseTypeDesc, flags);
1607
enumMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Enum, null, 0);
1656
enumMapping.TypeDesc = new
TypeDesc
(typeName, typeName, TypeKind.Enum, null, 0);
227 references to TypeDesc
System.Xml (227)
System\Xml\Serialization\Mappings.cs (5)
240
TypeDesc
typeDesc;
267
internal
TypeDesc
TypeDesc {
586
TypeDesc
typeDesc;
623
internal
TypeDesc
TypeDesc {
866
string GetNullableType(
TypeDesc
td) {
System\Xml\Serialization\Models.cs (18)
40
TypeDesc
typeDesc = typeScope.GetTypeDesc(type, null, directReference);
74
TypeDesc
typeDesc = typeScope.GetArrayTypeDesc(type);
84
TypeDesc
typeDesc;
88
protected TypeModel(Type type,
TypeDesc
typeDesc, ModelScope scope) {
102
internal
TypeDesc
TypeDesc {
108
internal ArrayModel(Type type,
TypeDesc
typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
116
internal PrimitiveModel(Type type,
TypeDesc
typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
120
internal SpecialModel(Type type,
TypeDesc
typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
125
internal StructModel(Type type,
TypeDesc
typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
163
void CheckSupportedMember(
TypeDesc
typeDesc, MemberInfo member, Type type) {
181
TypeDesc
typeDesc = ModelScope.TypeScope.GetTypeDesc(fieldInfo.FieldType, fieldInfo, true, false);
192
TypeDesc
typeDesc = ModelScope.TypeScope.GetTypeDesc(propertyInfo.PropertyType, propertyInfo, true, false);
230
TypeDesc
fieldTypeDesc;
232
internal FieldModel(string name, Type fieldType,
TypeDesc
fieldTypeDesc, bool checkSpecified, bool checkShouldPersist) :
235
internal FieldModel(string name, Type fieldType,
TypeDesc
fieldTypeDesc, bool checkSpecified, bool checkShouldPersist, bool readOnly) {
244
internal FieldModel(MemberInfo memberInfo, Type fieldType,
TypeDesc
fieldTypeDesc) {
289
internal
TypeDesc
FieldTypeDesc {
345
internal EnumModel(Type type,
TypeDesc
typeDesc, ModelScope scope) : base(type, typeDesc, scope) { }
System\Xml\Serialization\SchemaImporter.cs (3)
140
TypeDesc
baseTypeDesc;
144
TypeDesc
typeDescToChange = structMapping.TypeDesc;
164
TypeDesc
typeDesc = Scope.GetTypeDesc(typeof(object));
System\Xml\Serialization\SoapCodeExporter.cs (1)
193
void AddElementMetadata(CodeAttributeDeclarationCollection metadata, string elementName,
TypeDesc
typeDesc, bool isNullable) {
System\Xml\Serialization\SoapReflectionImporter.cs (8)
188
TypeDesc
td = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace);
215
TypeDesc
baseTypeDesc = model.TypeDesc.BaseTypeDesc;
220
TypeDesc
valueTypeDesc = string.IsNullOrEmpty(dataType) ? model.TypeDesc.BaseTypeDesc : typeScope.GetTypeDesc(dataType, XmlSchema.Namespace);
236
TypeDesc
typeDesc = typeScope.GetTypeDesc(typeof(object));
255
TypeMapping GetTypeMapping(string typeName, string ns,
TypeDesc
typeDesc) {
264
TypeDesc
typeDesc = baseMapping.TypeDesc.GetNullableTypeDesc(type);
682
object GetDefaultValue(
TypeDesc
fieldTypeDesc, SoapAttributes a) {
703
TypeDesc
typeDesc = typeScope.GetTypeDesc(type);
System\Xml\Serialization\SoapSchemaImporter.cs (8)
277
TypeDesc
baseTypeDesc = null;
447
TypeDesc
td = Scope.GetTypeDesc(typeName.Name, typeName.Namespace);
552
TypeDesc
sourceTypeDesc = Scope.GetTypeDesc(sourceDataType);
595
TypeDesc
sourceTypeDesc = GetDataTypeSource(dataType);
604
TypeDesc
typeDesc = null;
616
TypeDesc
GetDataTypeSource(XmlSchemaSimpleType dataType) {
618
TypeDesc
typeDesc = Scope.GetTypeDesc(dataType);
628
TypeDesc
typeDesc = Scope.GetTypeDesc(name.Name, name.Namespace);
System\Xml\Serialization\SourceInfo.cs (1)
50
public SourceInfo CastTo(
TypeDesc
td) {
System\Xml\Serialization\Types.cs (45)
77
TypeDesc
arrayElementTypeDesc;
78
TypeDesc
arrayTypeDesc;
79
TypeDesc
nullableTypeDesc;
83
TypeDesc
baseTypeDesc;
92
internal TypeDesc(string name, string fullName, XmlSchemaType dataType, TypeKind kind,
TypeDesc
baseTypeDesc, TypeFlags flags, string formatterName) {
111
internal TypeDesc(string name, string fullName, XmlSchemaType dataType, TypeKind kind,
TypeDesc
baseTypeDesc, TypeFlags flags)
114
internal TypeDesc(string name, string fullName, TypeKind kind,
TypeDesc
baseTypeDesc, TypeFlags flags)
118
: this(type.Name, type.FullName, dataType, TypeKind.Primitive, (
TypeDesc
)null, flags, formatterName) {
122
internal TypeDesc(Type type, string name, string fullName, TypeKind kind,
TypeDesc
baseTypeDesc, TypeFlags flags,
TypeDesc
arrayElementTypeDesc)
316
internal
TypeDesc
GetNullableTypeDesc(Type type) {
353
internal
TypeDesc
ArrayElementTypeDesc {
362
internal
TypeDesc
CreateArrayTypeDesc() {
368
internal
TypeDesc
CreateMappedTypeDesc(MappedTypeDesc extension) {
369
TypeDesc
newTypeDesc = new TypeDesc(extension.Name, extension.Name, null, this.kind, this.baseTypeDesc, this.flags, null);
377
internal
TypeDesc
BaseTypeDesc {
385
internal bool IsDerivedFrom(
TypeDesc
baseTypeDesc) {
386
TypeDesc
typeDesc = this;
394
internal static
TypeDesc
FindCommonBaseTypeDesc(
TypeDesc
[] typeDescs) {
396
TypeDesc
leastDerivedTypeDesc = null;
583
TypeDesc
typeDesc = new TypeDesc(type, true, dataType, formatterName, flags);
599
TypeDesc
typeDesc = new TypeDesc(type, false, dataType, formatterName, flags);
610
internal
TypeDesc
GetTypeDesc(string name, string ns) {
614
internal
TypeDesc
GetTypeDesc(string name, string ns, TypeFlags flags) {
615
TypeDesc
typeDesc = (
TypeDesc
)primitiveNames[name, ns];
624
internal
TypeDesc
GetTypeDesc(XmlSchemaSimpleType dataType) {
625
return (
TypeDesc
)primitiveDataTypes[dataType];
628
internal
TypeDesc
GetTypeDesc(Type type) {
632
internal
TypeDesc
GetTypeDesc(Type type, MemberInfo source) {
636
internal
TypeDesc
GetTypeDesc(Type type, MemberInfo source, bool directReference) {
640
internal
TypeDesc
GetTypeDesc(Type type, MemberInfo source, bool directReference, bool throwOnError) {
644
TypeDesc
typeDesc = (
TypeDesc
)primitiveTypes[type];
646
typeDesc = (
TypeDesc
)typeDescs[type];
658
internal
TypeDesc
GetArrayTypeDesc(Type type) {
659
TypeDesc
typeDesc = (
TypeDesc
)arrayTypeDescs[type];
670
internal TypeMapping GetTypeMappingFromTypeDesc(
TypeDesc
typeDesc) {
678
internal Type GetTypeFromTypeDesc(
TypeDesc
typeDesc) {
688
TypeDesc
ImportTypeDesc(Type type, MemberInfo memberInfo, bool directReference) {
689
TypeDesc
typeDesc = null;
843
TypeDesc
td = GetTypeDesc(arrayElementType, memberInfo, true, false);
975
static bool CanWriteProperty(PropertyInfo propertyInfo,
TypeDesc
typeDesc) {
System\Xml\Serialization\XmlCodeExporter.cs (11)
373
void AddDefaultValueAttribute(CodeMemberField field, CodeAttributeDeclarationCollection metadata, object defaultValue, TypeMapping mapping, CodeCommentStatementCollection comments,
TypeDesc
memberTypeDesc, Accessor accessor, CodeConstructor ctor) {
596
void ExportArrayElements(CodeAttributeDeclarationCollection metadata, ArrayMapping array, string ns,
TypeDesc
elementTypeDesc, int nestingLevel) {
748
void ExportText(CodeAttributeDeclarationCollection metadata,
TypeDesc
typeDesc, string dataType) {
759
void ExportAttribute(CodeAttributeDeclarationCollection metadata, string name, string ns,
TypeDesc
typeDesc,
TypeDesc
dataTypeDesc, XmlSchemaForm form) {
763
void ExportArrayItem(CodeAttributeDeclarationCollection metadata, string name, string ns,
TypeDesc
typeDesc,
TypeDesc
dataTypeDesc, bool isNullable, XmlSchemaForm form, int nestingLevel) {
767
void ExportElement(CodeAttributeDeclarationCollection metadata, string name, string ns,
TypeDesc
typeDesc,
TypeDesc
dataTypeDesc, bool isNullable, XmlSchemaForm form, int sequenceId) {
775
void ExportMetadata(CodeAttributeDeclarationCollection metadata, Type attributeType, string name, string ns,
TypeDesc
typeDesc,
TypeDesc
dataTypeDesc, object isNullable, XmlSchemaForm form, int nestingLevel, int sequenceId) {
System\Xml\Serialization\XmlReflectionImporter.cs (25)
351
TypeDesc
modelTypeDesc = TypeScope.IsOptionalValue(model.Type) ? model.TypeDesc.BaseTypeDesc : model.TypeDesc;
355
TypeDesc
td = typeScope.GetTypeDesc(dataType, XmlSchema.Namespace);
390
TypeDesc
valueTypeDesc = string.IsNullOrEmpty(dataType) ? model.TypeDesc.BaseTypeDesc : typeScope.GetTypeDesc(dataType, XmlSchema.Namespace);
444
SpecialMapping ImportSpecialMapping(Type type,
TypeDesc
typeDesc, string ns, ImportContext context, RecursionLimiter limiter) {
556
static Exception UnsupportedException(
TypeDesc
typeDesc, ImportContext context) {
561
TypeDesc
typeDesc = typeScope.GetTypeDesc(typeof(object));
572
TypeDesc
typeDesc = baseMapping.TypeDesc.GetNullableTypeDesc(type);
627
TypeMapping GetTypeMapping(string typeName, string ns,
TypeDesc
typeDesc, NameTable typeLib, Type type) {
837
TypeDesc
typeDesc = typeScope.GetTypeDesc(type);
995
void CheckContext(
TypeDesc
typeDesc, ImportContext context) {
1153
TypeDesc
typeDesc = typeScope.GetTypeDesc(xmlReflectionMember.MemberType);
1304
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1381
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1409
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1423
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1476
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1505
TypeDesc
arrayElementTypeDesc = typeScope.GetTypeDesc(arrayElementType);
1635
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1691
TypeDesc
targetTypeDesc = typeScope.GetTypeDesc(targetType);
1858
object GetDefaultValue(
TypeDesc
fieldTypeDesc, Type t, XmlAttributes a) {
1876
static XmlArrayItemAttribute CreateArrayItemAttribute(
TypeDesc
typeDesc, int nestingLevel) {
1882
static XmlArrayAttribute CreateArrayAttribute(
TypeDesc
typeDesc) {
1887
static XmlElementAttribute CreateElementAttribute(
TypeDesc
typeDesc) {
1927
static void CheckNullable(bool isNullable,
TypeDesc
typeDesc, TypeMapping mapping) {
1953
TypeDesc
typeDesc = new TypeScope().GetTypeDesc(type);
System\Xml\Serialization\XmlSchemaImporter.cs (12)
529
TypeDesc
baseTypeDesc = null;
628
TypeDesc
baseTypeDesc = Scope.GetTypeDesc(baseType);
800
TypeDesc
[] typeDescs = new
TypeDesc
[uniqueTypeDescs.Count];
808
member.TypeDesc =
TypeDesc
.FindCommonBaseTypeDesc(typeDescs);
1440
TypeDesc
xmlnsTypeDesc = Scope.GetTypeDesc(typeof(XmlSerializerNamespaces));
1600
TypeDesc
sourceTypeDesc = Scope.GetTypeDesc((XmlSchemaSimpleType)sourceType);
1680
TypeDesc
sourceTypeDesc = GetDataTypeSource(dataType, flags);
1690
TypeDesc
typeDesc = null;
1735
TypeDesc
GetDataTypeSource(XmlSchemaSimpleType dataType, TypeFlags flags) {
1736
TypeDesc
typeDesc = null;
1754
TypeDesc
typeDesc = Scope.GetTypeDesc(name.Name, name.Namespace, flags);
System\Xml\Serialization\XmlSerializationGeneratedCode.cs (4)
56
TypeDesc
stringTypeDesc = null;
57
TypeDesc
qnameTypeDesc = null;
79
internal
TypeDesc
StringTypeDesc { get { return stringTypeDesc; } }
80
internal
TypeDesc
QnameTypeDesc { get { return qnameTypeDesc; } }
System\Xml\Serialization\XmlSerializationILGen.cs (4)
27
TypeDesc
stringTypeDesc = null;
28
TypeDesc
qnameTypeDesc = null;
52
internal
TypeDesc
StringTypeDesc { get { return stringTypeDesc; } }
53
internal
TypeDesc
QnameTypeDesc { get { return qnameTypeDesc; } }
System\Xml\Serialization\XmlSerializationReader.cs (19)
1972
TypeDesc
td;
1974
internal CreateCollectionInfo(string name,
TypeDesc
td) {
1982
internal
TypeDesc
TypeDesc {
2324
string GetChoiceIdentifierSource(MemberMapping mapping, string parent,
TypeDesc
parentTypeDesc) {
2581
void WriteCreateCollection(
TypeDesc
td, string source) {
2929
TypeDesc
td = mapping.TypeDesc;
3285
TypeDesc
td = member.Mapping.TypeDesc;
3319
void WriteAddCollectionFixup(
TypeDesc
typeDesc, bool readOnly, string memberSource, string targetSource) {
3371
TypeDesc
td = c.TypeDesc;
3640
TypeDesc
typeDesc = member.Mapping.TypeDesc;
3927
TypeDesc
td = ((NullableMapping)e.Mapping).BaseMapping.TypeDesc;
3960
TypeDesc
td = ((NullableMapping)e.Mapping).BaseMapping.TypeDesc;
4027
string GetArraySource(
TypeDesc
typeDesc, string arrayName) {
4030
string GetArraySource(
TypeDesc
typeDesc, string arrayName, bool multiRef) {
4069
TypeDesc
typeDesc = member.Mapping.TypeDesc;
4130
void WriteSourceBeginTyped(string source,
TypeDesc
typeDesc) {
4170
TypeDesc
td = arrayMapping.TypeDesc;
4687
void WriteCatchCastException(
TypeDesc
typeDesc, string source, string id) {
4704
void WriteArrayLocalDecl( string typeName, string variableName, string initValue,
TypeDesc
arrayTypeDesc) {
System\Xml\Serialization\XmlSerializationReaderILGen.cs (12)
41
TypeDesc
td;
43
internal CreateCollectionInfo(string name,
TypeDesc
td) {
51
internal
TypeDesc
TypeDesc {
394
string GetChoiceIdentifierSource(MemberMapping mapping, string parent,
TypeDesc
parentTypeDesc) {
1284
TypeDesc
td = mapping.TypeDesc;
2189
TypeDesc
typeDesc = member.Mapping.TypeDesc;
2619
string GetArraySource(
TypeDesc
typeDesc, string arrayName) {
2622
string GetArraySource(
TypeDesc
typeDesc, string arrayName, bool multiRef) {
2659
TypeDesc
typeDesc = member.Mapping.TypeDesc;
2712
void WriteSourceBeginTyped(string source,
TypeDesc
typeDesc) {
3533
void WriteCatchCastException(
TypeDesc
typeDesc, string source, string id) {
3582
void WriteArrayLocalDecl(string typeName, string variableName, string initValue,
TypeDesc
arrayTypeDesc) {
System\Xml\Serialization\XmlSerializationWriter.cs (26)
714
TypeDesc
typeDesc = new TypeScope().GetTypeDesc(type);
1451
void WritePrimitiveValue(
TypeDesc
typeDesc, string source, bool isElement) {
1475
TypeDesc
typeDesc = mapping.TypeDesc;
2201
bool CanOptimizeWriteListSequence(
TypeDesc
listElementTypeDesc) {
2210
void WriteMember(string source, AttributeAccessor attribute,
TypeDesc
memberTypeDesc, string parent) {
2242
TypeDesc
arrayElementTypeDesc = memberTypeDesc.ArrayElementTypeDesc;
2367
TypeDesc
typeDesc = attribute.Mapping.TypeDesc;
2373
void WriteMember(string source, string choiceSource, ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
memberTypeDesc, bool writeAccessors) {
2382
void WriteArray(string source, string choiceSource, ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
arrayTypeDesc) {
2418
void WriteArrayItems(ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
arrayTypeDesc, string arrayName, string choiceName) {
2419
TypeDesc
arrayElementTypeDesc = arrayTypeDesc.ArrayElementTypeDesc;
2512
TypeDesc
td = elements[0].IsUnbounded ? elements[0].Mapping.TypeDesc.CreateArrayTypeDesc() : elements[0].Mapping.TypeDesc;
2572
TypeDesc
td = element.IsUnbounded ? element.Mapping.TypeDesc.CreateArrayTypeDesc() : element.Mapping.TypeDesc;
2792
TypeDesc
td = mapping.TypeDesc.CreateArrayTypeDesc();
2950
TypeDesc
td = mapping.TypeDesc;
3028
void WriteChoiceTypeCheck(string source, string fullTypeName, bool useReflection, ChoiceIdentifierAccessor choice, string enumName,
TypeDesc
typeDesc) {
3172
void WriteArrayLocalDecl(string typeName, string variableName, string initValue,
TypeDesc
arrayTypeDesc) {
3353
TypeDesc
typeDesc = scope.GetTypeDesc(type);
3359
string WriteTypeInfo(TypeScope scope,
TypeDesc
typeDesc, Type type){
3369
TypeDesc
elementTypeDesc = typeDesc.ArrayElementTypeDesc;
3408
TypeDesc
elementTypeDesc = typeDesc.ArrayElementTypeDesc;
3456
void WriteCollectionInfo(string typeVariable,
TypeDesc
typeDesc, Type type){
3627
internal string GetStringForMember(string obj, string memberName,
TypeDesc
typeDesc){
3631
TypeDesc
saveTypeDesc = typeDesc;
3670
internal string GetStringForArrayMember(string arrayName, string subscript,
TypeDesc
arrayTypeDesc){
3769
internal void WriteArrayLocalDecl( string typeName, string variableName, string initValue,
TypeDesc
arrayTypeDesc) {
System\Xml\Serialization\XmlSerializationWriterILGen.cs (21)
135
void WritePrimitiveValue(
TypeDesc
typeDesc, SourceInfo source, out Type returnType) {
176
TypeDesc
typeDesc = mapping.TypeDesc;
1101
bool CanOptimizeWriteListSequence(
TypeDesc
listElementTypeDesc) {
1110
void WriteMember(SourceInfo source, AttributeAccessor attribute,
TypeDesc
memberTypeDesc, string parent) {
1159
TypeDesc
arrayElementTypeDesc = memberTypeDesc.ArrayElementTypeDesc;
1345
TypeDesc
typeDesc = attribute.Mapping.TypeDesc;
1364
void WriteMember(SourceInfo source, string choiceSource, ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
memberTypeDesc, bool writeAccessors) {
1374
void WriteArray(SourceInfo source, string choiceSource, ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
arrayTypeDesc) {
1430
void WriteArrayItems(ElementAccessor[] elements, TextAccessor text, ChoiceIdentifierAccessor choice,
TypeDesc
arrayTypeDesc, string arrayName, string choiceName)
1432
TypeDesc
arrayElementTypeDesc = arrayTypeDesc.ArrayElementTypeDesc;
1521
TypeDesc
td = elements[0].IsUnbounded ? elements[0].Mapping.TypeDesc.CreateArrayTypeDesc() : elements[0].Mapping.TypeDesc;
1581
TypeDesc
td = element.IsUnbounded ? element.Mapping.TypeDesc.CreateArrayTypeDesc() : element.Mapping.TypeDesc;
1955
TypeDesc
td = mapping.TypeDesc;
2087
void WriteChoiceTypeCheck(SourceInfo source, string fullTypeName, ChoiceIdentifierAccessor choice, string enumName,
TypeDesc
typeDesc) {
2157
void WriteArrayLocalDecl(string typeName, string variableName, SourceInfo initValue,
TypeDesc
arrayTypeDesc) {
2234
TypeDesc
typeDesc = scope.GetTypeDesc(type);
2249
internal string GetStringForMember(string obj, string memberName,
TypeDesc
typeDesc) {
2253
internal SourceInfo GetSourceForMember(string obj, MemberMapping member,
TypeDesc
typeDesc, CodeGenerator ilg)
2257
internal SourceInfo GetSourceForMember(string obj, MemberMapping member, MemberInfo memberInfo,
TypeDesc
typeDesc, CodeGenerator ilg)
2279
internal string GetStringForArrayMember(string arrayName, string subscript,
TypeDesc
arrayTypeDesc) {
2417
internal void WriteArrayLocalDecl(string typeName, string variableName, SourceInfo initValue,
TypeDesc
arrayTypeDesc) {
System\Xml\Serialization\XmlSerializer.cs (4)
446
TypeDesc
typeDesc = (
TypeDesc
)TypeScope.PrimtiveTypes[primitiveType];
726
TypeDesc
typeDesc = (
TypeDesc
)TypeScope.PrimtiveTypes[type];