22 references to GetValueNoThrow
mscorlib (22)
system\delegateserializationholder.cs (1)
164methods[i] = (MethodInfo)info.GetValueNoThrow(methodInfoName, typeof(MethodInfo));
system\exception.cs (3)
90_data = (IDictionary)(info.GetValueNoThrow("Data",typeof(IDictionary))); 107_watsonBuckets = (Object)info.GetValueNoThrow("WatsonBuckets", typeof(byte[])); 110_safeSerializationManager = info.GetValueNoThrow("SafeSerializationManager", typeof(SafeSerializationManager)) as SafeSerializationManager;
system\reflection\memberinfoserializationholder.cs (2)
84m_signature2 = (string)info.GetValueNoThrow("Signature2", typeof(string)); 207Type[] genericArguments = m_info.GetValueNoThrow("GenericArguments", typeof(Type[])) as Type[];
system\runtime\serialization\safeserializationmanager.cs (1)
297RuntimeType realType = info.GetValueNoThrow(RealTypeSerializationName, typeof(RuntimeType)) as RuntimeType;
system\security\policy\hash.cs (4)
54Dictionary<Type, byte[]> hashes = info.GetValueNoThrow("Hashes", typeof(Dictionary<Type, byte[]>)) as Dictionary<Type, byte[]>; 65byte[] md5 = info.GetValueNoThrow("Md5", typeof(byte[])) as byte[]; 71byte[] sha1 = info.GetValueNoThrow("Sha1", typeof(byte[])) as byte[]; 77byte[] rawData = info.GetValueNoThrow("RawData", typeof(byte[])) as byte[];
system\security\securityexception.cs (10)
239m_permissionThatFailed = (String)info.GetValueNoThrow(FirstPermissionThatFailedName, typeof(String)); 240m_demanded = (String)info.GetValueNoThrow(DemandedName, typeof(String)); 241m_granted = (String)info.GetValueNoThrow(GrantedSetName, typeof(String)); 242m_refused = (String)info.GetValueNoThrow(RefusedSetName, typeof(String)); 243m_denied = (String)info.GetValueNoThrow(DeniedName, typeof(String)); 244m_permitOnly = (String)info.GetValueNoThrow(PermitOnlyName, typeof(String)); 245m_assemblyName = (AssemblyName)info.GetValueNoThrow(Assembly_Name, typeof(AssemblyName)); 246m_serializedMethodInfo = (byte[])info.GetValueNoThrow(MethodName_Serialized, typeof(byte[])); 247m_strMethodInfo = (String)info.GetValueNoThrow(MethodName_String, typeof(String)); 249m_url = (String)info.GetValueNoThrow(UrlName, typeof(String));
system\timezoneinfo.cs (1)
3247object o = info.GetValueNoThrow("BaseUtcOffsetDelta", typeof(TimeSpan));