3 writes to IsNullable
System.Private.DataContractSerialization (3)
System\Runtime\Serialization\ClassDataContract.cs (3)
864
memberContract.
IsNullable
= DataContract.IsTypeNullable(memberContract.MemberType);
919
memberContract.
IsNullable
= DataContract.IsTypeNullable(memberContract.MemberType);
945
memberContract.
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)
146
if (dataMember.
IsNullable
)
390
if (dataMember.
IsNullable
)
System\Runtime\Serialization\SchemaImporter.cs (1)
1138
if (dataMember.MemberTypeContract.IsValueType && dataMember.
IsNullable
)
System.Runtime.Serialization.Schema (3)
System\Runtime\Serialization\Schema\CodeExporter.cs (3)
666
CodeTypeReference? keyTypeReference = GetElementTypeReference(keyMember.MemberTypeContract, keyMember.
IsNullable
);
667
CodeTypeReference? valueTypeReference = GetElementTypeReference(valueMember.MemberTypeContract, valueMember.
IsNullable
);
847
(dataMember.
IsNullable
&& dataMember.MemberTypeContract.IsValueType));