system\runtime\remoting\message.cs (16)
3403ArrayList paramNames = (ArrayList)info.GetValue("__paramNameList", typeof(ArrayList));
3405Hashtable keyToNamespaceTable = (Hashtable)info.GetValue("__keyToNamespaceTable", typeof(Hashtable));
3419argValues.Add(info.GetValue((String)argNames[i], typeof(Object)));
3504args[position] = Message.SoapCoerceArg(info.GetValue(memberName, typeof(Object)), pinfos[position].ParameterType, keyToNamespaceTable);
3513Message.SoapCoerceArg(info.GetValue(memberName, typeof(Object)), pinfos[marshalRequestArgMap[i]].ParameterType, keyToNamespaceTable);
4368Hashtable keyToNamespaceTable = (Hashtable)info.GetValue("__keyToNamespaceTable", typeof(Hashtable));
4369ArrayList paramNames = (ArrayList)info.GetValue("__paramNameList", typeof(ArrayList));
4370SoapFault soapFault = (SoapFault)info.GetValue("__fault", typeof(SoapFault));
4430Object returnValue = info.GetValue((String)paramNames[0], typeof(Object));
4490outArgs[position]= Message.SoapCoerceArg(info.GetValue(memberName, typeof(Object)), pinfos[position].ParameterType, keyToNamespaceTable);
4506outArgs[position] = Message.SoapCoerceArg(info.GetValue(memberName, typeof(Object)), pinfos[position].ParameterType, keyToNamespaceTable);
5028_props = (IDictionary)info.GetValue("props", typeof(IDictionary));
5029_delegate = (CrossContextDelegate) info.GetValue("delegate", typeof(CrossContextDelegate));
5030_sourceCtxID = (IntPtr) info.GetValue("sourceCtxID", typeof(IntPtr));
5031_targetCtxID = (IntPtr) info.GetValue("targetCtxID", typeof(IntPtr));
5032_eeData = (IntPtr) info.GetValue("eeData", typeof(IntPtr));
system\timezoneinfo.cs (18)
1258m_id = (String)info.GetValue("Id", typeof(String));
1259m_displayName = (String)info.GetValue("DisplayName", typeof(String));
1260m_standardDisplayName = (String)info.GetValue("StandardName", typeof(String));
1261m_daylightDisplayName = (String)info.GetValue("DaylightName", typeof(String));
1262m_baseUtcOffset = (TimeSpan)info.GetValue("BaseUtcOffset", typeof(TimeSpan));
1263m_adjustmentRules = (AdjustmentRule[])info.GetValue("AdjustmentRules", typeof(AdjustmentRule[]));
1264m_supportsDaylightSavingTime = (Boolean)info.GetValue("SupportsDaylightSavingTime", typeof(Boolean));
3241m_dateStart = (DateTime)info.GetValue("DateStart", typeof(DateTime));
3242m_dateEnd = (DateTime)info.GetValue("DateEnd", typeof(DateTime));
3243m_daylightDelta = (TimeSpan)info.GetValue("DaylightDelta", typeof(TimeSpan));
3244m_daylightTransitionStart = (TransitionTime)info.GetValue("DaylightTransitionStart", typeof(TransitionTime));
3245m_daylightTransitionEnd = (TransitionTime)info.GetValue("DaylightTransitionEnd", typeof(TransitionTime));
3501m_timeOfDay = (DateTime)info.GetValue("TimeOfDay", typeof(DateTime));
3502m_month = (byte)info.GetValue("Month", typeof(byte));
3503m_week = (byte)info.GetValue("Week", typeof(byte));
3504m_day = (byte)info.GetValue("Day", typeof(byte));
3505m_dayOfWeek = (DayOfWeek)info.GetValue("DayOfWeek", typeof(DayOfWeek));
3506m_isFixedDateRule = (Boolean)info.GetValue("IsFixedDateRule", typeof(Boolean));