348 references to GetValue
mscorlib (146)
system\activationcontext.cs (3)
56string fullName = (string) info.GetValue("FullName", typeof(string)); 57string[] manifestPaths = (string[]) info.GetValue("ManifestPaths", typeof(string[])); 485string fullName = (string) info.GetValue("FullName", typeof(string));
system\AggregateException.cs (1)
272Exception[] innerExceptions = info.GetValue("InnerExceptions", typeof(Exception[])) as Exception[];
system\argumentoutofrangeexception.cs (1)
105m_actualValue = info.GetValue("ActualValue", typeof(Object));
system\collections\comparer.cs (1)
53m_compareInfo = (CompareInfo) info.GetValue(CompareInfoName, typeof(CompareInfo));
system\collections\generic\dictionary.cs (2)
409comparer = (IEqualityComparer<TKey>)siInfo.GetValue(ComparerName, typeof(IEqualityComparer<TKey>)); 418siInfo.GetValue(KeyValuePairsName, typeof(KeyValuePair<TKey, TValue>[]));
system\collections\hashtable.cs (6)
1246_keycomparer = (IEqualityComparer)siInfo.GetValue(KeyComparerName, typeof(IEqualityComparer)); 1249c = (IComparer)siInfo.GetValue(ComparerName, typeof(IComparer)); 1253hcp = (IHashCodeProvider)siInfo.GetValue(HashCodeProviderName, typeof(IHashCodeProvider)); 1257serKeys = (Object[])siInfo.GetValue(KeysName, typeof(Object[])); 1260serValues = (Object[])siInfo.GetValue(ValuesName, typeof(Object[])); 1389_table = (Hashtable)info.GetValue("ParentTable", typeof(Hashtable));
system\datetimeoffset.cs (2)
577m_dateTime = (DateTime)info.GetValue("DateTime", typeof(DateTime)); 578m_offsetMinutes = (Int16)info.GetValue("OffsetMinutes", typeof(Int16));
system\delegateserializationholder.cs (3)
131m_delegateEntry = (DelegateEntry)info.GetValue("Delegate", typeof(DelegateEntry)); 151deiter.target = info.GetValue(stringTarget, typeof(Object)); 191Object target = info.GetValue("Target", typeof(Object));
system\exception.cs (2)
91_innerException = (Exception)(info.GetValue("InnerException",typeof(Exception))); 97_exceptionMethodString = (String)(info.GetValue("ExceptionMethod",typeof(String)));
system\globalization\culturenotfoundexception.cs (2)
70m_invalidCultureId = (Nullable<int>) info.GetValue("InvalidCultureId", typeof(Nullable<int>)); 72m_invalidCultureName = (string) info.GetValue("InvalidCultureName", typeof(string));
system\io\driveinfo.cs (1)
94_name = (String) info.GetValue(NameField, typeof(String));
system\missingmemberexception.cs (1)
47Signature = (byte[])info.GetValue("MMSignature", typeof(byte[]));
system\operatingsystem.cs (2)
64_version = (Version) info.GetValue("_version", typeof(Version)); 67_platform = (PlatformID) info.GetValue("_platform", typeof(PlatformID));
system\reflection\assemblyname.cs (9)
349_PublicKey = (byte[]) m_siInfo.GetValue("_PublicKey", typeof(byte[])); 350_PublicKeyToken = (byte[]) m_siInfo.GetValue("_PublicKeyToken", typeof(byte[])); 358_Version = (Version) m_siInfo.GetValue("_Version", typeof(Version)); 359_HashAlgorithm = (AssemblyHashAlgorithm) m_siInfo.GetValue("_HashAlgorithm", typeof(AssemblyHashAlgorithm)); 360_StrongNameKeyPair = (StrongNameKeyPair) m_siInfo.GetValue("_StrongNameKeyPair", typeof(StrongNameKeyPair)); 361_VersionCompatibility = (AssemblyVersionCompatibility)m_siInfo.GetValue("_VersionCompatibility", typeof(AssemblyVersionCompatibility)); 362_Flags = (AssemblyNameFlags) m_siInfo.GetValue("_Flags", typeof(AssemblyNameFlags)); 365_HashAlgorithmForControl = (AssemblyHashAlgorithm) m_siInfo.GetValue("_HashAlgorithmForControl", typeof(AssemblyHashAlgorithm)); 366_HashForControl = (byte[]) m_siInfo.GetValue("_HashForControl", typeof(byte[]));
system\reflection\pointer.cs (2)
35_ptr = ((IntPtr)(info.GetValue("_ptr", typeof(IntPtr)))).ToPointer(); 36_ptrType = (RuntimeType)info.GetValue("_ptrType", typeof(RuntimeType));
system\reflection\reflectiontypeloadexception.cs (2)
58_classes = (Type[])(info.GetValue("Types", typeof(Type[]))); 59_exceptions = (Exception[])(info.GetValue("Exceptions", typeof(Exception[])));
system\reflection\strongnamekeypair.cs (4)
110_keyPairExported = (bool) info.GetValue("_keyPairExported", typeof(bool)); 111_keyPairArray = (byte[]) info.GetValue("_keyPairArray", typeof(byte[])); 112_keyPairContainer = (string) info.GetValue("_keyPairContainer", typeof(string)); 113_publicKey = (byte[]) info.GetValue("_publicKey", typeof(byte[]));
system\runtime\compilerservices\RuntimeWrappedException.cs (1)
50m_wrappedException = info.GetValue("WrappedException", typeof(Object));
system\runtime\remoting\activationservices.cs (2)
1532m_NextActivator = (IActivator) info.GetValue("m_NextActivator",typeof(IActivator)); 1586m_NextActivator = (IActivator) info.GetValue("m_NextActivator",typeof(IActivator));
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\runtime\serialization\safeserializationmanager.cs (1)
301m_serializedStates = info.GetValue("m_serializedStates", typeof(List<object>)) as List<object>;
system\runtimehandles.cs (3)
886RuntimeType m = (RuntimeType)info.GetValue("TypeObj", typeof(RuntimeType)); 1055MethodBase m =(MethodBase)info.GetValue("MethodObj", typeof(MethodBase)); 1799FieldInfo f =(RuntimeFieldInfo) info.GetValue("FieldObj", typeof(RuntimeFieldInfo));
system\security\cryptography\x509certificates\x509certificate.cs (1)
210byte[] rawData = (byte[]) info.GetValue("RawData", typeof(byte[]));
system\security\hostprotectionexception.cs (2)
61m_protected = (HostProtectionResource)info.GetValue(ProtectedResourcesName, typeof(HostProtectionResource)); 62m_demanded = (HostProtectionResource)info.GetValue(DemandedResourcesName, typeof(HostProtectionResource));
system\security\policy\hashmembershipcondition.cs (2)
46m_value = (byte[]) info.GetValue("HashValue", typeof(byte[])); 47string hashAlgorithm = (string) info.GetValue("HashAlgorithm", typeof(string));
system\security\principal\windowsidentity.cs (1)
241IntPtr userToken = (IntPtr) info.GetValue("m_userToken", typeof(IntPtr));
system\security\securityexception.cs (2)
238m_action = (SecurityAction)info.GetValue(ActionName, typeof(SecurityAction)); 248m_zone = (SecurityZone)info.GetValue(ZoneName, typeof(SecurityZone));
system\text\codepageencoding.cs (5)
52this.m_codePage = (int)info.GetValue("m_codePage", typeof(int)); 60this.m_isReadOnly = (bool)info.GetValue("m_isReadOnly", typeof(bool)); 62this.encoderFallback = (EncoderFallback)info.GetValue("encoderFallback", typeof(EncoderFallback)); 63this.decoderFallback = (DecoderFallback)info.GetValue("decoderFallback", typeof(DecoderFallback)); 122this.realEncoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
system\text\encoding.cs (9)
301this.m_codePage = (int)info.GetValue("m_codePage", typeof(int)); 314this.m_isReadOnly = (bool)info.GetValue("m_isReadOnly", typeof(bool)); 316this.encoderFallback = (EncoderFallback)info.GetValue("encoderFallback", typeof(EncoderFallback)); 317this.decoderFallback = (DecoderFallback)info.GetValue("decoderFallback", typeof(DecoderFallback)); 1665this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding)); 1669this.m_fallback = (EncoderFallback) info.GetValue("m_fallback", typeof(EncoderFallback)); 1670this.charLeftOver = (Char) info.GetValue("charLeftOver", typeof(Char)); 1793this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding)); 1797this.m_fallback = (DecoderFallback) info.GetValue("m_fallback", typeof(DecoderFallback));
system\text\gb18030encoding.cs (6)
874this.m_encoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding)); 875this.m_fallback = (DecoderFallback)info.GetValue("m_fallback", typeof(DecoderFallback)); 876this.bLeftOver1 = (short)info.GetValue("bLeftOver1", typeof(short)); 877this.bLeftOver2 = (short)info.GetValue("bLeftOver2", typeof(short)); 878this.bLeftOver3 = (short)info.GetValue("bLeftOver3", typeof(short)); 879this.bLeftOver4 = (short)info.GetValue("bLeftOver4", typeof(short));
system\text\mlangcodepageencoding.cs (6)
54this.m_codePage = (int)info.GetValue("m_codePage", typeof(int)); 62this.m_isReadOnly = (bool)info.GetValue("m_isReadOnly", typeof(bool)); 64this.encoderFallback = (EncoderFallback)info.GetValue("encoderFallback", typeof(EncoderFallback)); 65this.decoderFallback = (DecoderFallback)info.GetValue("decoderFallback", typeof(DecoderFallback)); 124this.realEncoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding)); 162this.realEncoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding));
system\text\surrogateencoder.cs (1)
38this.realEncoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding));
system\text\unicodeencoding.cs (5)
2035this.lastByte = (int)info.GetValue("lastByte", typeof(int)); 2040this.m_encoding = (Encoding)info.GetValue("m_encoding", typeof(Encoding)); 2041this.lastChar = (char)info.GetValue("lastChar", typeof(char)); 2042this.m_fallback = (DecoderFallback)info.GetValue("m_fallback", typeof(DecoderFallback)); 2047bool bigEndian = (bool)info.GetValue("bigEndian", typeof(bool));
system\text\utf7encoding.cs (7)
919this.bits = (int)info.GetValue("bits", typeof(int)); 920this.bitCount = (int)info.GetValue("bitCount", typeof(int)); 921this.firstByte = (bool)info.GetValue("firstByte", typeof(bool)); 922this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding)); 984this.bits = (int)info.GetValue("bits", typeof(int)); 985this.bitCount = (int)info.GetValue("bitCount", typeof(int)); 986this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding));
system\text\utf8encoding.cs (6)
2440this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding)); 2443this.surrogateChar = (int)info.GetValue("surrogateChar", typeof(int)); 2447this.m_fallback = (EncoderFallback) info.GetValue("m_fallback", typeof(EncoderFallback)); 2515this.m_encoding = (Encoding)info.GetValue("encoding", typeof(Encoding)); 2520this.bits = (int)info.GetValue("wbits", typeof(int)); 2521this.m_fallback = (DecoderFallback) info.GetValue("m_fallback", typeof(DecoderFallback));
system\threading\compressedstack.cs (1)
189this.m_pls = (PermissionListSet)info.GetValue("PLS", typeof(PermissionListSet));
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));
system\unityserializationholder.cs (5)
180m_declaringMethod = info.GetValue("DeclaringMethod", typeof(MethodBase)) as MethodBase; 181m_declaringType = info.GetValue("DeclaringType", typeof(Type)) as Type; 183m_elementTypes = info.GetValue("ElementTypes", typeof(int[])) as int[]; 190m_instantiation = info.GetValue("GenericArguments", typeof(Type[])) as Type[]; 191m_elementTypes = info.GetValue("ElementTypes", typeof(int[])) as int[];
system\weakreference.cs (1)
61Object target = info.GetValue("TrackedObject",typeof(Object));
system\weakreferenceoft.cs (1)
54T target = (T)info.GetValue("TrackedObject", typeof(T));
PresentationFramework (11)
src\Framework\MS\Internal\AppModel\Journaling.cs (4)
280_pageFunctionId = (Guid)info.GetValue("_pageFunctionId", typeof(Guid)); 281_parentPageFunctionId = (Guid)info.GetValue("_parentPageFunctionId", typeof(Guid)); ; 523_returnEventSaver = (ReturnEventSaver)info.GetValue("_returnEventSaver", typeof(ReturnEventSaver)); 809_markupUri = (Uri)info.GetValue("_markupUri", typeof(Uri));
src\Framework\System\Windows\Navigation\Journal.cs (1)
83_journalEntryList = (List<JournalEntry>)info.GetValue("_journalEntryList", typeof(List<JournalEntry>));
src\Framework\System\Windows\Navigation\JournalEntry.cs (5)
123_source = (Uri)info.GetValue("_source", typeof(Uri)); 124_entryType = (JournalEntryType)info.GetValue("_entryType", typeof(JournalEntryType)); 125_jeGroupState = (JournalEntryGroupState)info.GetValue("_jeGroupState", typeof(JournalEntryGroupState)); 126_customContentState = (CustomContentState)info.GetValue("_customContentState", typeof(CustomContentState)); 127_rootViewerState = (CustomJournalStateInternal)info.GetValue("_rootViewerState", typeof(CustomJournalStateInternal));
src\Framework\System\Windows\ResourceReferenceKeyNotFoundException.cs (1)
45_resourceKey = info.GetValue("Key", typeof(object));
System (41)
compmod\system\collections\generic\linkedlist.cs (3)
308T[] array = (T[]) siInfo.GetValue(ValuesName, typeof(T[])); 570list = (LinkedList<T>)siInfo.GetValue(LinkedListName, typeof(LinkedList<T>)); 572current = (T)siInfo.GetValue(CurrentValueName, typeof(T));
compmod\system\collections\generic\sortedset.cs (8)
2028comparer = (IComparer<T>)siInfo.GetValue(ComparerName, typeof(IComparer<T>)); 2030max = (T)siInfo.GetValue(maxName, typeof(T)); 2031min = (T)siInfo.GetValue(minName, typeof(T)); 2037T[] items = (T[])siInfo.GetValue(ItemsName, typeof(T[])); 2105comparer = (IComparer<T>)siInfo.GetValue(ComparerName, typeof(IComparer<T>)); 2109T[] items = (T[])siInfo.GetValue(ItemsName, typeof(T[])); 2240tree = (SortedSet<T>)siInfo.GetValue(TreeName, typeof(SortedSet<T>)); 2247T item = (T)siInfo.GetValue(NodeValueName, typeof(T));
compmod\system\collections\specialized\nameobjectcollectionbase.cs (5)
210hashProvider = (IHashCodeProvider)info.GetValue(HashCodeProviderName, typeof(IHashCodeProvider));; 214comparer = (IComparer)info.GetValue(ComparerName, typeof(IComparer)); 217_keyComparer = (IEqualityComparer)info.GetValue(KeyComparerName, typeof(IEqualityComparer)); 223keys = (String[])info.GetValue(KeysName, typeof(String[])); 226values = (Object[])info.GetValue(ValuesName, typeof(Object[]));
compmod\system\collections\specialized\ordereddictionary.cs (2)
283_comparer = (IEqualityComparer)_siInfo.GetValue(KeyComparerName, typeof(IEqualityComparer)); 287object[] serArray = (object[])_siInfo.GetValue(ArrayListName, typeof(object[]));
compmod\system\componentmodel\LicenseException.cs (2)
59type = (Type) info.GetValue("type", typeof(Type)); 60instance = info.GetValue("instance", typeof(object));
compmod\system\componentmodel\WarningException.cs (2)
70helpUrl = (string) info.GetValue("helpUrl", typeof(string)); 71helpTopic = (string) info.GetValue("helpTopic", typeof(string));
net\System\Net\filewebrequest.cs (3)
66m_headers = (WebHeaderCollection)serializationInfo.GetValue("headers", typeof(WebHeaderCollection)); 67m_proxy = (IWebProxy)serializationInfo.GetValue("proxy", typeof(IWebProxy)); 68m_uri = (Uri)serializationInfo.GetValue("uri", typeof(Uri));
net\System\Net\filewebresponse.cs (2)
74m_headers = (WebHeaderCollection)serializationInfo.GetValue("headers", typeof(WebHeaderCollection)); 75m_uri = (Uri)serializationInfo.GetValue("uri", typeof(Uri));
net\System\Net\HttpWebRequest.cs (4)
5273_HttpRequestHeaders = (WebHeaderCollection)serializationInfo.GetValue("_HttpRequestHeaders", typeof(WebHeaderCollection)); 5274_Proxy = (IWebProxy)serializationInfo.GetValue("_Proxy", typeof(IWebProxy)); 5304ProtocolVersion = (Version)serializationInfo.GetValue("_Version", typeof(Version)); 5305_OriginUri = (Uri)serializationInfo.GetValue("_OriginUri", typeof(Uri));
net\System\Net\HttpWebResponse.cs (4)
575m_HttpResponseHeaders = (WebHeaderCollection)serializationInfo.GetValue("m_HttpResponseHeaders", typeof(WebHeaderCollection)); 576m_Uri = (Uri)serializationInfo.GetValue("m_Uri", typeof(Uri)); 578m_Certificate = (X509Certificate)serializationInfo.GetValue("m_Certificate", typeof(X509Certificate)); 580Version version = (Version)serializationInfo.GetValue("m_Version", typeof(Version));
net\System\Net\mail\SmtpFailedRecipientsException.cs (1)
37innerExceptions = (SmtpFailedRecipientException[]) info.GetValue("innerExceptions", typeof(SmtpFailedRecipientException[]));
net\System\Net\webproxy.cs (2)
443_ProxyAddress = (Uri)serializationInfo.GetValue("_ProxyAddress", typeof(Uri)); 445_BypassList = (ArrayList)serializationInfo.GetValue("_BypassList", typeof(ArrayList));
security\system\security\Authentication\ExtendedProtection\ExtendedProtectionPolicy.cs (2)
90customServiceNames = (ServiceNameCollection)info.GetValue(customServiceNamesName, typeof(ServiceNameCollection)); 92byte[] channelBindingData = (byte[])info.GetValue(customChannelBindingName, typeof(byte[]));
services\monitoring\system\diagnosticts\EventLogEntry.cs (1)
53dataBuf = (byte[])info.GetValue("DataBuffer", typeof(byte[]));
System.Activities (4)
System\Activities\DynamicUpdate\InstanceUpdateException.cs (1)
61this.blockingActivities = (ReadOnlyCollection<ActivityBlockingUpdate>)info.GetValue(
System\Activities\VersionMismatchException.cs (2)
54this.ExpectedVersion = (WorkflowIdentity)info.GetValue("expectedVersion", typeof(WorkflowIdentity)); 55this.ActualVersion = (WorkflowIdentity)info.GetValue("actualVersion", typeof(WorkflowIdentity));
System\Activities\WorkflowApplicationException.cs (1)
49this.instanceId = (Guid)info.GetValue(InstanceIdName, typeof(Guid));
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\AttributeTableValidationException.cs (1)
86_validationErrors = (string[])info.GetValue("ValidationErrors", typeof(string[]));
System.AddIn (3)
System\Addin\MiniReflection\TypeInfo.cs (3)
205_assembly = (MiniAssembly) info.GetValue(AssemblyFieldName, typeof(MiniAssembly)); 206_module = (MiniModule) info.GetValue(ModuleFieldName, typeof(MiniModule)); 207_mdToken = (MetadataToken) info.GetValue(MDTokenFieldName, typeof(MetadataToken));
System.Configuration (1)
System\Configuration\ConfigurationErrorsException.cs (1)
197info.GetValue(numPrefix + SERIALIZATION_PARAM_ERROR_DATA,
System.Core (2)
System\Collections\Generic\HashSet.cs (2)
398m_comparer = (IEqualityComparer<T>)m_siInfo.GetValue(ComparerName, typeof(IEqualityComparer<T>)); 405T[] array = (T[])m_siInfo.GetValue(ElementsName, typeof(T[]));
System.Data (34)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Metadata\AttributeTableValidationException.cs (1)
86_validationErrors = (string[])info.GetValue("ValidationErrors", typeof(string[]));
fx\src\data\System\Data\CodeGen\StrongTypingException.cs (2)
55int count = (int) info.GetValue(KEY_ARRAYCOUNT, typeof(System.Int32)); 59errorList.Add(info.GetValue(KEY_ARRAYVALUES + i, typeof(System.String)));
fx\src\data\System\Data\DataSet.cs (6)
360Byte[] buffer = (Byte[])info.GetValue(String.Format(CultureInfo.InvariantCulture, "DataSet.Tables_{0}", i), typeof(Byte[])); 385string strSchema = (String)info.GetValue(KEY_XMLSCHEMA, typeof(System.String)); 401string strData = (String)info.GetValue(KEY_XMLDIFFGRAM, typeof(System.String)); 432int lcid = (int)info.GetValue("DataSet.LocaleLCID", typeof(int)); 440extendedProperties = (PropertyCollection)info.GetValue("DataSet.ExtendedProperties", typeof(PropertyCollection)); 481ArrayList relationList = (ArrayList)info.GetValue("DataSet.Relations", typeof(ArrayList));
fx\src\data\System\Data\DataTable.cs (18)
292string strSchema = (String)info.GetValue(KEY_XMLSCHEMA, typeof(System.String)); 293string strData = (String)info.GetValue(KEY_XMLDIFFGRAM, typeof(System.String)); 399int lcid = (int)info.GetValue("DataTable.LocaleLCID", typeof(int)); 415extendedProperties = (PropertyCollection) info.GetValue("DataTable.ExtendedProperties", typeof(PropertyCollection)); 431dc.DataType = (Type) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.DataType", i), typeof(Type)); 432dc.XmlDataType = (string) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.XmlDataType", i), typeof(string)); 433dc.SimpleType = (SimpleType) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.SimpleType", i), typeof(SimpleType)); 435dc.ColumnMapping = (MappingType) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.ColumnMapping", i), typeof(MappingType)); 436dc.DateTimeMode = (DataSetDateTime) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.DateTimeMode", i), typeof(DataSetDateTime)); 443dc.DefaultValue = info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.DefaultValue", i), typeof(object)); 448dc.AutoIncrementCurrent = info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.AutoIncrementCurrent", i), typeof(object)); 456dc.extendedProperties = (PropertyCollection) info.GetValue(String.Format(formatProvider, "DataTable.DataColumn_{0}.ExtendedProperties", i), typeof(PropertyCollection)); 545ArrayList constraintList = (ArrayList) info.GetValue(String.Format(CultureInfo.InvariantCulture, "DataTable_{0}.Constraints", serIndex), typeof(ArrayList)); 712BitArray rowStates = (BitArray) info.GetValue(String.Format(formatProvider, "DataTable_{0}.RowStates", serIndex), typeof(BitArray)); 713ArrayList storeList = (ArrayList) info.GetValue(String.Format(formatProvider, "DataTable_{0}.Records", serIndex), typeof(ArrayList)); 714ArrayList nullbitList = (ArrayList) info.GetValue(String.Format(formatProvider, "DataTable_{0}.NullBits", serIndex), typeof(ArrayList)); 715Hashtable rowErrors = (Hashtable) info.GetValue(String.Format(formatProvider, "DataTable_{0}.RowErrors", serIndex), typeof(Hashtable)); 717Hashtable colErrors = (Hashtable) info.GetValue(String.Format(formatProvider, "DataTable_{0}.ColumnErrors", serIndex), typeof(Hashtable));
fx\src\data\System\Data\Odbc\OdbcException.cs (2)
47_retcode = (ODBC32.RETCODE) si.GetValue("odbcRetcode", typeof(ODBC32.RETCODE)); 48odbcErrors = (OdbcErrorCollection) si.GetValue("odbcErrors", typeof(OdbcErrorCollection));
fx\src\data\System\Data\OleDb\OleDbException.cs (1)
44oledbErrors = (OleDbErrorCollection) si.GetValue("oledbErrors", typeof(OleDbErrorCollection));
fx\src\data\System\Data\SimpleType.cs (1)
58this.baseSimpleType = (SimpleType)info.GetValue("SimpleType.BaseSimpleType", typeof(SimpleType));
fx\src\data\System\Data\SqlClient\SqlException.cs (1)
37_errors = (SqlErrorCollection) si.GetValue("Errors", typeof(SqlErrorCollection));
fx\src\data\System\Data\SQLTypes\SQLBytes.cs (1)
158 m_rgbBuf = (byte[]) info.GetValue("data", typeof(byte[]));
fx\src\data\System\Data\SQLTypes\SQLChars.cs (1)
149 m_rgchBuf = (char[]) info.GetValue("data", typeof(char[]));
System.Data.SqlXml (9)
System\Xml\Xsl\XPath\XPathCompileException.cs (3)
22queryString = (string)info.GetValue("QueryString", typeof(string)); 23startChar = (int) info.GetValue("StartChar" , typeof(int )); 24endChar = (int) info.GetValue("EndChar" , typeof(int ));
System\Xml\Xsl\XslException.cs (6)
88bool hasLineInfo = (bool) info.GetValue("hasLineInfo", typeof(bool)); 94uriString = (string) info.GetValue("Uri" , typeof(string )); 95startLine = (int) info.GetValue("StartLine" , typeof(int )); 96startPos = (int) info.GetValue("StartPos" , typeof(int )); 97endLine = (int) info.GetValue("EndLine" , typeof(int )); 98endPos = (int) info.GetValue("EndPos" , typeof(int ));
System.Drawing (3)
commonui\System\Drawing\Icon.cs (2)
208iconData = (byte[])info.GetValue("IconData", typeof(byte[])); 209iconSize = (Size)info.GetValue("IconSize", typeof(Size));
commonui\System\Drawing\Printing\InvalidPrinterException.cs (1)
46settings = (PrinterSettings)info.GetValue("settings", typeof(PrinterSettings));
System.IdentityModel (3)
System\IdentityModel\Tokens\BootstrapContext.cs (1)
77_tokenBytes = (byte[])info.GetValue(_tokenKey, typeof(byte[]));
System\IdentityModel\Tokens\SessionSecurityToken.cs (1)
339byte[] cookie = (byte[])info.GetValue(tokenKey, typeof(byte[]));
System\IdentityModel\UnsupportedTokenTypeBadRequestException.cs (1)
61_tokenType = info.GetValue(TokenTypeProperty, typeof(string)) as string;
System.Management (4)
InteropClasses\WMIInterop.cs (1)
50Byte[] rg = info.GetValue(SerializationBlobName, typeof(Byte[])) as Byte[];
managementbaseobject.cs (1)
225_wbemObject = info.GetValue("wbemObject", typeof(IWbemClassObjectFreeThreaded)) as IWbemClassObjectFreeThreaded;
managementexception.cs (2)
677errorCode = (ManagementStatus)info.GetValue("errorCode", typeof(ManagementStatus)); 678errorObject = info.GetValue("errorObject", typeof(ManagementBaseObject)) as ManagementBaseObject;
System.Net (16)
net\PeerToPeer\Cloud.cs (1)
331m_PnrpScope = (PnrpScope)info.GetValue("_CloudScope", typeof(PnrpScope));
net\PeerToPeer\Collaboration\Peer.cs (1)
334m_peerEndPoints = (PeerEndPointCollection)serializationInfo.GetValue("_PeerEndPoints", typeof(PeerEndPointCollection));
net\PeerToPeer\Collaboration\PeerApplication.cs (2)
73m_id = (Guid) serializationInfo.GetValue("_Id", typeof(Guid)); 74m_data = (byte []) serializationInfo.GetValue("_Data", typeof(byte[]));
net\PeerToPeer\Collaboration\PeerContact.cs (3)
328m_peerName = (PeerName) serializationInfo.GetValue("_PeerName", typeof(PeerName)); 337m_subscribeAllowed = (SubscriptionType)serializationInfo.GetValue("_SubscribeAllowed", typeof(SubscriptionType)); 339byte [] rawData = (byte[]) serializationInfo.GetValue("_Credentials", typeof(byte[]));
net\PeerToPeer\Collaboration\PeerEndPoint.cs (1)
103m_endPoint = (IPEndPoint)serializationInfo.GetValue("_EndPoint", typeof(IPEndPoint));
net\PeerToPeer\Collaboration\PeerNearMe.cs (1)
81m_id = (Guid) serializationInfo.GetValue("_Id", typeof(Guid));
net\PeerToPeer\Collaboration\PeerObject.cs (2)
69m_id = (Guid) serializationInfo.GetValue("_Id", typeof(Guid)); 70m_data = (byte[])serializationInfo.GetValue("_Data", typeof(byte[]));
net\PeerToPeer\PeerNameRecord.cs (3)
37m_Data = info.GetValue("_Data", typeof(byte[])) as byte[]; 38m_EndPointCollection = info.GetValue("_EndpointList", typeof(IPEndPointCollection)) as IPEndPointCollection; 39m_PeerName = info.GetValue("_PeerName", typeof(PeerName)) as PeerName;
net\PeerToPeer\PeerNameRegistration.cs (2)
693m_Cloud = info.GetValue("_Cloud", typeof(Cloud)) as Cloud; 694m_PeerNameRecord = info.GetValue("_PeerNameRecord", typeof(PeerNameRecord)) as PeerNameRecord;
System.Runtime.DurableInstancing (9)
System\Runtime\DurableInstancing\InstanceKeyCollisionException.cs (2)
54ConflictingInstanceId = (Guid)info.GetValue(ConflictingInstanceIdName, typeof(Guid)); 55Guid guid = (Guid)info.GetValue(InstanceKeyName, typeof(Guid));
System\Runtime\DurableInstancing\InstanceKeyCompleteException.cs (1)
52Guid guid = (Guid)info.GetValue(InstanceKeyName, typeof(Guid));
System\Runtime\DurableInstancing\InstanceKeyNotReadyException.cs (1)
52Guid guid = (Guid)info.GetValue(InstanceKeyName, typeof(Guid));
System\Runtime\DurableInstancing\InstanceLockedException.cs (2)
75InstanceOwnerId = (Guid)info.GetValue(InstanceOwnerIdName, typeof(Guid)); 76SerializableInstanceOwnerMetadata = (ReadOnlyDictionaryInternal<XName, object>)info.GetValue(SerializableInstanceOwnerMetadataName, typeof(ReadOnlyDictionaryInternal<XName, object>));
System\Runtime\DurableInstancing\InstanceOwnerException.cs (1)
51InstanceOwnerId = (Guid)info.GetValue(InstanceOwnerIdName, typeof(Guid));
System\Runtime\DurableInstancing\InstancePersistenceCommandException.cs (1)
67InstanceId = (Guid)info.GetValue(InstanceIdName, typeof(Guid));
System\Runtime\DurableInstancing\InstancePersistenceException.cs (1)
58CommandName = info.GetValue(CommandNameName, typeof(XName)) as XName;
System.ServiceModel (9)
System\ServiceModel\Channels\RedirectionException.cs (4)
93this.Type = (RedirectionType)info.GetValue("Type", typeof(RedirectionType)); 94this.Duration = (RedirectionDuration)info.GetValue("Duration", typeof(RedirectionDuration)); 95this.Scope = (RedirectionScope)info.GetValue("Scope", typeof(RedirectionScope)); 96RedirectionLocation[] locations = (RedirectionLocation[])info.GetValue("Locations", typeof(RedirectionLocation[]));
System\ServiceModel\FaultException.cs (4)
125this.fault = (MessageFault)info.GetValue("messageFault", typeof(MessageFault)); 282FaultCodeData[] data = (FaultCodeData[])info.GetValue(key, typeof(FaultCodeData[])); 288FaultReasonData[] data = (FaultReasonData[])info.GetValue(key, typeof(FaultReasonData[])); 428this.detail = (TDetail)info.GetValue("detail", typeof(TDetail));
System\ServiceModel\MsmqPoisonMessageException.cs (1)
35this.messageLookupId = (long)info.GetValue("messageLookupId", typeof(long));
System.ServiceModel.Web (3)
System\ServiceModel\Web\WebFaultException.cs (3)
34this.StatusCode = (HttpStatusCode)info.GetValue("statusCode", typeof(HttpStatusCode)); 165this.StatusCode = (HttpStatusCode)info.GetValue("statusCode", typeof(HttpStatusCode)); 166this.knownTypes = (Type[])info.GetValue("knownTypes", typeof(Type[]));
System.Transactions (1)
System\Transactions\Oletx\OleTxTransaction.cs (1)
152propagationTokenForDeserialize = (byte[])serializationInfo.GetValue(propagationTokenString, typeof(byte[]));
System.Web (5)
HttpException.cs (3)
335_results = (CompilerResults) info.GetValue("_results", typeof(CompilerResults)); 498_virtualPath = (VirtualPath)info.GetValue("_virtualPath", typeof(VirtualPath)); 500_parserErrors = (ParserErrorCollection)info.GetValue("_parserErrors", typeof(ParserErrorCollection));
Management\SqlServices.cs (1)
80_sqlException = (SqlException)info.GetValue("_sqlException", typeof(SqlException));
Security\RolePrincipal.cs (1)
363_Identity = info.GetValue("_Identity", typeof(IIdentity)) as IIdentity;
System.Web.Extensions (1)
UI\WebControls\LinqDataSourceValidationException.cs (1)
42info.GetValue("InnerExceptions", typeof(IDictionary<string, Exception>));
System.Windows.Forms (13)
winforms\Managed\System\Resources\ResXDataNode.cs (5)
784nodeInfo.Name = (string)info.GetValue("Name", typeof(string)); 785nodeInfo.Comment = (string)info.GetValue("Comment", typeof(string)); 786nodeInfo.TypeName = (string)info.GetValue("TypeName", typeof(string)); 787nodeInfo.MimeType = (string)info.GetValue("MimeType", typeof(string)); 788nodeInfo.ValueData = (string)info.GetValue("ValueData", typeof(string));
winforms\Managed\System\WinForms\ListViewGroup.cs (1)
262items[i] = (ListViewItem)info.GetValue("Item" + i, typeof(ListViewItem));
winforms\Managed\System\WinForms\ListViewItem.cs (5)
1273BackColor = (Color)info.GetValue(entry.Name, typeof(Color)); 1279Font = (Font)info.GetValue(entry.Name, typeof(Font)); 1282ForeColor = (Color)info.GetValue(entry.Name, typeof(Color)); 1288ListViewGroup group = (ListViewGroup) info.GetValue(entry.Name, typeof(ListViewGroup)); 1305ListViewSubItem newItem = (ListViewSubItem)info.GetValue("SubItem" + i.ToString(CultureInfo.InvariantCulture), typeof(ListViewSubItem));
winforms\Managed\System\WinForms\TreeNode.cs (2)
1408propBag = (OwnerDrawPropertyBag)serializationInfo.GetValue(entry.Name, typeof(OwnerDrawPropertyBag)); 1478childNodes[i] = (TreeNode)serializationInfo.GetValue("children" + i, typeof(TreeNode));
System.Workflow.Activities (3)
Role\ADRole.cs (1)
92this.m_operations = (List<IDirectoryOperation>)info.GetValue("m_operations", typeof(List<IDirectoryOperation>));
Rules\Exceptions.cs (2)
223m_op = (CodeBinaryOperatorType)serializeInfo.GetValue("op", typeof(CodeBinaryOperatorType)); 314m_errors = (ValidationErrorCollection)serializeInfo.GetValue("errors", typeof(ValidationErrorCollection));
System.Workflow.ComponentModel (5)
AuthoringOM\Compiler\Validation\WorkflowValidationFailedException.cs (1)
20this.errors = (ValidationErrorCollection)info.GetValue("errors", typeof(ValidationErrorCollection));
AuthoringOM\Design\ComponentSerializationService.cs (2)
151this.serializedXmlString = (String)info.GetValue(SerializedXmlString, typeof(String)); 152this.assemblies = (AssemblyName[])info.GetValue(AssembliesKey, typeof(AssemblyName[]));
AuthoringOM\Serializer\SimpleTypesSurrogate.cs (2)
33TypeID typeID = (TypeID)info.GetValue("typeID", typeof(TypeID)); 36return new Guid(info.GetValue("bits", typeof(byte[])) as byte[]);
System.Workflow.Runtime (3)
Tracking.cs (1)
1083this._services = (Dictionary<Guid, ServiceProfileContainer>)info.GetValue("services", typeof(Dictionary<Guid, ServiceProfileContainer>));
Tracking\TrackingProfileDeserializationException.cs (1)
43_args = (List<ValidationEventArgs>)info.GetValue("__TrackingProfileDeserializationException_args__", typeof(List<ValidationEventArgs>));
WorkflowOwnershipException.cs (1)
65_instanceId = (Guid)info.GetValue("__instanceId__", typeof(Guid));
System.WorkflowServices (2)
System\ServiceModel\Persistence\InstanceLockException.cs (1)
58this.id = (Guid) info.GetValue("id", typeof(Guid));
System\ServiceModel\Persistence\InstanceNotFoundException.cs (1)
58this.id = (Guid) info.GetValue("id", typeof(Guid));
System.Xml (16)
System\Xml\Schema\XmlSchemaException.cs (5)
36res = (string) info.GetValue("res" , typeof(string)); 37args = (string[]) info.GetValue("args", typeof(string[])); 38sourceUri = (string) info.GetValue("sourceUri", typeof(string)); 39lineNumber = (int) info.GetValue("lineNumber", typeof(int)); 40linePosition = (int) info.GetValue("linePosition", typeof(int));
System\Xml\XmlException.cs (4)
45res = (string) info.GetValue("res" , typeof(string)); 46args = (string[])info.GetValue("args", typeof(string[])); 47lineNumber = (int) info.GetValue("lineNumber", typeof(int)); 48linePosition = (int) info.GetValue("linePosition", typeof(int));
System\Xml\XPath\XPathException.cs (2)
29res = (string ) info.GetValue("res" , typeof(string )); 30args = (string[]) info.GetValue("args", typeof(string[]));
System\Xml\Xslt\XsltException.cs (5)
30res = (string) info.GetValue("res" , typeof(string )); 31args = (string[]) info.GetValue("args" , typeof(string[] )); 32sourceUri = (string) info.GetValue("sourceUri" , typeof(string )); 33lineNumber = (int) info.GetValue("lineNumber" , typeof(int )); 34linePosition = (int) info.GetValue("linePosition", typeof(int ));