24 references to CheckValueStatus
System.Private.CoreLib (24)
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (21)
832CheckValueStatus result = TryChangeType(ref value, ref copyBack); 833if (result == CheckValueStatus.Success) 840case CheckValueStatus.ArgumentException: 842case CheckValueStatus.NotSupported_ByRefLike: 876CheckValueStatus result = TryChangeType(ref value, ref copyBack); 877if (result == CheckValueStatus.Success) 882if (result == CheckValueStatus.ArgumentException && (invokeAttr & BindingFlags.ExactBinding) == 0) 902if (result == CheckValueStatus.Success) 911case CheckValueStatus.ArgumentException: 913case CheckValueStatus.NotSupported_ByRefLike: 946private CheckValueStatus TryChangeType(ref object? value, ref bool copyBack) 970return CheckValueStatus.Success; 977return CheckValueStatus.Success; 982return CheckValueStatus.NotSupported_ByRefLike; 987return CheckValueStatus.Success; 990return CheckValueStatus.ArgumentException; 999return CheckValueStatus.Success; 1004return CheckValueStatus.Success; 1009return CheckValueStatus.NotSupported_ByRefLike; 1014return CheckValueStatus.Success; 1025return CheckValueStatus.ArgumentException;
src\System\RuntimeType.CoreCLR.cs (3)
3719private CheckValueStatus TryChangeTypeSpecial(ref object value) 3725return CheckValueStatus.ArgumentException; 3742return CheckValueStatus.Success;