Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / clr / src / BCL / System / Runtime / Serialization / SerializationInfoEnumerator.cs / 1 / SerializationInfoEnumerator.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerializationInfoEnumerator ** ** ** Purpose: A formatter-friendly mechanism for walking all of ** the data in a SerializationInfo. Follows the IEnumerator ** mechanism from Collections. ** ** ============================================================*/ namespace System.Runtime.Serialization { using System; using System.Collections; // // The tuple returned by SerializationInfoEnumerator.Current. // [System.Runtime.InteropServices.ComVisible(true)] public struct SerializationEntry { private Type m_type; private Object m_value; private String m_name; public Object Value { get { return m_value; } } public String Name { get { return m_name; } } public Type ObjectType { get { return m_type; } } internal SerializationEntry(String entryName, Object entryValue, Type entryType) { m_value = entryValue; m_name = entryName; m_type = entryType; } } // // A simple enumerator over the values stored in the SerializationInfo. // This does not snapshot the values, it just keeps pointers to the // member variables of the SerializationInfo that created it. // [System.Runtime.InteropServices.ComVisible(true)] public sealed class SerializationInfoEnumerator : IEnumerator { String[] m_members; Object[] m_data; Type[] m_types; int m_numItems; int m_currItem; bool m_current; internal SerializationInfoEnumerator(String[] members, Object[] info, Type[] types, int numItems) { BCLDebug.Assert(members!=null, "[SerializationInfoEnumerator.ctor]members!=null"); BCLDebug.Assert(info!=null, "[SerializationInfoEnumerator.ctor]info!=null"); BCLDebug.Assert(types!=null, "[SerializationInfoEnumerator.ctor]types!=null"); BCLDebug.Assert(numItems>=0, "[SerializationInfoEnumerator.ctor]numItems>=0"); BCLDebug.Assert(members.Length>=numItems, "[SerializationInfoEnumerator.ctor]members.Length>=numItems"); BCLDebug.Assert(info.Length>=numItems, "[SerializationInfoEnumerator.ctor]info.Length>=numItems"); BCLDebug.Assert(types.Length>=numItems, "[SerializationInfoEnumerator.ctor]types.Length>=numItems"); m_members = members; m_data = info; m_types = types; //The MoveNext semantic is much easier if we enforce that [0..m_numItems] are valid entries //in the enumerator, hence we subtract 1. m_numItems = numItems-1; m_currItem = -1; m_current = false; } public bool MoveNext() { if (m_currItemObject IEnumerator.Current { //Actually returns a SerializationEntry get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return (Object)(new SerializationEntry(m_members[m_currItem], m_data[m_currItem], m_types[m_currItem])); } } public SerializationEntry Current { //Actually returns a SerializationEntry get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return (new SerializationEntry(m_members[m_currItem], m_data[m_currItem], m_types[m_currItem])); } } public void Reset() { m_currItem = -1; m_current = false; } public String Name { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_members[m_currItem]; } } public Object Value { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_data[m_currItem]; } } public Type ObjectType { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_types[m_currItem]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerializationInfoEnumerator ** ** ** Purpose: A formatter-friendly mechanism for walking all of ** the data in a SerializationInfo. Follows the IEnumerator ** mechanism from Collections. ** ** ============================================================*/ namespace System.Runtime.Serialization { using System; using System.Collections; // // The tuple returned by SerializationInfoEnumerator.Current. // [System.Runtime.InteropServices.ComVisible(true)] public struct SerializationEntry { private Type m_type; private Object m_value; private String m_name; public Object Value { get { return m_value; } } public String Name { get { return m_name; } } public Type ObjectType { get { return m_type; } } internal SerializationEntry(String entryName, Object entryValue, Type entryType) { m_value = entryValue; m_name = entryName; m_type = entryType; } } // // A simple enumerator over the values stored in the SerializationInfo. // This does not snapshot the values, it just keeps pointers to the // member variables of the SerializationInfo that created it. // [System.Runtime.InteropServices.ComVisible(true)] public sealed class SerializationInfoEnumerator : IEnumerator { String[] m_members; Object[] m_data; Type[] m_types; int m_numItems; int m_currItem; bool m_current; internal SerializationInfoEnumerator(String[] members, Object[] info, Type[] types, int numItems) { BCLDebug.Assert(members!=null, "[SerializationInfoEnumerator.ctor]members!=null"); BCLDebug.Assert(info!=null, "[SerializationInfoEnumerator.ctor]info!=null"); BCLDebug.Assert(types!=null, "[SerializationInfoEnumerator.ctor]types!=null"); BCLDebug.Assert(numItems>=0, "[SerializationInfoEnumerator.ctor]numItems>=0"); BCLDebug.Assert(members.Length>=numItems, "[SerializationInfoEnumerator.ctor]members.Length>=numItems"); BCLDebug.Assert(info.Length>=numItems, "[SerializationInfoEnumerator.ctor]info.Length>=numItems"); BCLDebug.Assert(types.Length>=numItems, "[SerializationInfoEnumerator.ctor]types.Length>=numItems"); m_members = members; m_data = info; m_types = types; //The MoveNext semantic is much easier if we enforce that [0..m_numItems] are valid entries //in the enumerator, hence we subtract 1. m_numItems = numItems-1; m_currItem = -1; m_current = false; } public bool MoveNext() { if (m_currItem Object IEnumerator.Current { //Actually returns a SerializationEntry get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return (Object)(new SerializationEntry(m_members[m_currItem], m_data[m_currItem], m_types[m_currItem])); } } public SerializationEntry Current { //Actually returns a SerializationEntry get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return (new SerializationEntry(m_members[m_currItem], m_data[m_currItem], m_types[m_currItem])); } } public void Reset() { m_currItem = -1; m_current = false; } public String Name { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_members[m_currItem]; } } public Object Value { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_data[m_currItem]; } } public Type ObjectType { get { if (m_current==false) { throw new InvalidOperationException(Environment.GetResourceString("InvalidOperation_EnumOpCantHappen")); } return m_types[m_currItem]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SwitchAttribute.cs
- XamlTypeMapper.cs
- NominalTypeEliminator.cs
- TrackingLocationCollection.cs
- TraceFilter.cs
- ThreadExceptionDialog.cs
- Message.cs
- Compiler.cs
- MappingModelBuildProvider.cs
- FormViewPagerRow.cs
- ReachUIElementCollectionSerializerAsync.cs
- Function.cs
- filewebresponse.cs
- KeyToListMap.cs
- Literal.cs
- CategoryNameCollection.cs
- InstanceData.cs
- SqlAggregateChecker.cs
- IndexExpression.cs
- OrderedDictionaryStateHelper.cs
- PointUtil.cs
- EncoderFallback.cs
- ValidationHelpers.cs
- TraceContextEventArgs.cs
- CodePageUtils.cs
- DocumentOrderComparer.cs
- DataGridSortCommandEventArgs.cs
- Unit.cs
- ListViewContainer.cs
- Exceptions.cs
- SettingsBindableAttribute.cs
- EventEntry.cs
- NameTable.cs
- ReadContentAsBinaryHelper.cs
- ConsoleCancelEventArgs.cs
- DataBoundLiteralControl.cs
- Stylesheet.cs
- InputScopeAttribute.cs
- AutomationIdentifier.cs
- OracleBoolean.cs
- SqlBooleanMismatchVisitor.cs
- SingleResultAttribute.cs
- AmbientLight.cs
- Pen.cs
- connectionpool.cs
- TextSelectionHelper.cs
- LookupTables.cs
- SplitterPanel.cs
- GridViewDeleteEventArgs.cs
- SizeConverter.cs
- UserControlCodeDomTreeGenerator.cs
- CustomLineCap.cs
- XmlLanguage.cs
- StringInfo.cs
- ClientCultureInfo.cs
- DefaultValueTypeConverter.cs
- SQLMembershipProvider.cs
- ThreadAbortException.cs
- Point3DCollectionValueSerializer.cs
- CriticalFinalizerObject.cs
- EllipseGeometry.cs
- MetadataArtifactLoaderResource.cs
- DesignerActionPanel.cs
- MonthCalendarDesigner.cs
- ResponseBodyWriter.cs
- SystemThemeKey.cs
- SqlUserDefinedAggregateAttribute.cs
- XmlDownloadManager.cs
- WarningException.cs
- SelectionItemProviderWrapper.cs
- StackSpiller.Temps.cs
- TextSpanModifier.cs
- BindingMemberInfo.cs
- DocumentationServerProtocol.cs
- LateBoundBitmapDecoder.cs
- Win32PrintDialog.cs
- SqlDataSourceParameterParser.cs
- DataKey.cs
- LoginCancelEventArgs.cs
- InternalControlCollection.cs
- TextSerializer.cs
- TimeSpanOrInfiniteConverter.cs
- ReferenceTypeElement.cs
- WebPartDisplayModeCancelEventArgs.cs
- QueryReaderSettings.cs
- InfocardExtendedInformationEntry.cs
- ScrollProviderWrapper.cs
- XmlNamespaceMappingCollection.cs
- CompositeDataBoundControl.cs
- FacetChecker.cs
- ProcessManager.cs
- ColumnResizeUndoUnit.cs
- HtmlInputButton.cs
- XmlSignatureProperties.cs
- ArgumentOutOfRangeException.cs
- MultiPageTextView.cs
- RenameRuleObjectDialog.cs
- FixedDocument.cs
- TimeoutValidationAttribute.cs
- WsdlBuildProvider.cs