3 writes to IsNullable
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\ClassDataContract.cs (3)
864memberContract.IsNullable = DataContract.IsTypeNullable(memberContract.MemberType); 919memberContract.IsNullable = DataContract.IsTypeNullable(memberContract.MemberType); 945memberContract.IsNullable = DataContract.IsTypeNullable(memberContract.MemberType);
8 references to IsNullable
System.Private.DataContractSerialization (5)
System\Runtime\Serialization\DataMember.cs (2)
318&& (IsNullable || thisIsNullable) == (dataMember.IsNullable || dataMemberIsNullable)
System\Runtime\Serialization\SchemaExporter.cs (2)
146if (dataMember.IsNullable) 390if (dataMember.IsNullable)
System\Runtime\Serialization\SchemaImporter.cs (1)
1138if (dataMember.MemberTypeContract.IsValueType && dataMember.IsNullable)
System.Runtime.Serialization.Schema (3)
System\Runtime\Serialization\Schema\CodeExporter.cs (3)
666CodeTypeReference? keyTypeReference = GetElementTypeReference(keyMember.MemberTypeContract, keyMember.IsNullable); 667CodeTypeReference? valueTypeReference = GetElementTypeReference(valueMember.MemberTypeContract, valueMember.IsNullable); 847(dataMember.IsNullable && dataMember.MemberTypeContract.IsValueType));