8 writes to IsValueType
dotnet-svcutil-lib (8)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (1)
555xmlContract.IsValueType = info.IsValueType;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (7)
667dataContract.IsValueType = IsValueType(typeName, annotation); 716xmlDataContract.IsValueType = false; 721xmlDataContract.IsValueType = IsValueType(typeName, xsdType.Annotation); 729xmlDataContract.IsValueType = true; 843dataContract.IsValueType = IsValueType(typeName, annotation); 920baseContract.IsValueType = false; 1118keyValueContract.IsValueType = true;
10 references to IsValueType
dotnet-svcutil-lib (10)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (6)
367if (dataContract.IsValueType && isElementTypeNullable) 728isParamValueType = paramContract.IsValueType; 809if (classDataContract.IsValueType && SupportsDeclareValueTypes) 865(dataMember.IsNullable && dataMember.MemberTypeContract.IsValueType)); 876CodeMemberProperty property = CreateProperty(memberType, propertyName, fieldName, dataMember.MemberTypeContract.IsValueType && SupportsDeclareValueTypes, raisePropertyChanged); 1189if (xmlDataContract.IsValueType)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
1637if (this.IsValueType && isNullable)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (3)
919if (baseContract.IsValueType) 998if (!memberTypeContract.IsValueType && !memberIsNullable) 1139if (dataMember.MemberTypeContract.IsValueType && dataMember.IsNullable)