24 references to CheckValueStatus
System.Private.CoreLib (24)
src\libraries\System.Private.CoreLib\src\System\RuntimeType.cs (21)
813CheckValueStatus result = TryChangeType(ref value, ref copyBack); 814if (result == CheckValueStatus.Success) 821case CheckValueStatus.ArgumentException: 823case CheckValueStatus.NotSupported_ByRefLike: 857CheckValueStatus result = TryChangeType(ref value, ref copyBack); 858if (result == CheckValueStatus.Success) 863if (result == CheckValueStatus.ArgumentException && (invokeAttr & BindingFlags.ExactBinding) == 0) 883if (result == CheckValueStatus.Success) 892case CheckValueStatus.ArgumentException: 894case CheckValueStatus.NotSupported_ByRefLike: 927private CheckValueStatus TryChangeType(ref object? value, ref bool copyBack) 951return CheckValueStatus.Success; 958return CheckValueStatus.Success; 963return CheckValueStatus.NotSupported_ByRefLike; 968return CheckValueStatus.Success; 971return CheckValueStatus.ArgumentException; 980return CheckValueStatus.Success; 985return CheckValueStatus.Success; 990return CheckValueStatus.NotSupported_ByRefLike; 995return CheckValueStatus.Success; 1006return CheckValueStatus.ArgumentException;
src\System\RuntimeType.CoreCLR.cs (3)
3740private CheckValueStatus TryChangeTypeSpecial(ref object value) 3746return CheckValueStatus.ArgumentException; 3763return CheckValueStatus.Success;