5 writes to IsValueType
dotnet-svcutil-lib (5)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (1)
799this.IsValueType = type.GetTypeInfo().IsValueType;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
331{ _helper.IsValueType = value; }
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\EnumDataContract.cs (1)
188IsValueType = true;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExceptionDataContract.cs (2)
146IsValueType = false; 155this.IsValueType = type.GetTypeInfo().IsValueType;
2 references to IsValueType
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (1)
1255if (_baseContract != null && IsValueType)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
325{ return _helper.IsValueType; }