Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / clr / src / BCL / System / Runtime / Serialization / SerializationFieldInfo.cs / 1 / SerializationFieldInfo.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerializationFieldInfo ** ** ** Purpose: Provides a methods of representing imaginary fields ** which are unique to serialization. In this case, what we're ** representing is the private members of parent classes. We ** aggregate the RuntimeFieldInfo associated with this member ** and return a managled form of the name. The name that we ** return is .parentname.fieldname ** ** ============================================================*/ using System; using System.Reflection; using System.Globalization; namespace System.Runtime.Serialization { internal sealed class SerializationFieldInfo : FieldInfo { internal static readonly char FakeNameSeparatorChar = '+'; internal static readonly String FakeNameSeparatorString = "+"; private RuntimeFieldInfo m_field; private String m_serializationName; public override Module Module { get { return m_field.Module; } } public override int MetadataToken { get { return m_field.MetadataToken; } } internal SerializationFieldInfo(RuntimeFieldInfo field, String namePrefix) { BCLDebug.Assert(field!=null, "[SerializationFieldInfo.ctor]field!=null"); BCLDebug.Assert(namePrefix!=null, "[SerializationFieldInfo.ctor]namePrefix!=null"); m_field = field; m_serializationName = String.Concat(namePrefix, FakeNameSeparatorString, m_field.Name); } // // MemberInfo methods // public override String Name { get { return m_serializationName; } } public override Type DeclaringType { get { return m_field.DeclaringType; } } public override Type ReflectedType { get { return m_field.ReflectedType; } } public override Object[] GetCustomAttributes(bool inherit) { return m_field.GetCustomAttributes(inherit); } public override Object[] GetCustomAttributes(Type attributeType, bool inherit) { return m_field.GetCustomAttributes(attributeType, inherit); } public override bool IsDefined(Type attributeType, bool inherit) { return m_field.IsDefined(attributeType, inherit); } // // FieldInfo methods // public override Type FieldType { get { return m_field.FieldType; } } public override Object GetValue(Object obj) { return m_field.GetValue(obj); } internal Object InternalGetValue(Object obj, bool requiresAccessCheck) { RtFieldInfo field = m_field as RtFieldInfo; if (field != null) return field.InternalGetValue(obj, requiresAccessCheck); else return m_field.GetValue(obj); } public override void SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) { m_field.SetValue(obj, value, invokeAttr, binder, culture); } internal void InternalSetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture, bool requiresAccessCheck, bool isBinderDefault) { //m_field.InternalSetValue(obj, value, invokeAttr, binder, culture, requiresAccessCheck, isBinderDefault); RtFieldInfo field = m_field as RtFieldInfo; if (field != null) field.InternalSetValue(obj, value, invokeAttr, binder, culture, false); else m_field.SetValue(obj, value, invokeAttr, binder, culture); } internal RuntimeFieldInfo FieldInfo { get { return m_field; } } public override RuntimeFieldHandle FieldHandle { get { return m_field.FieldHandle; } } public override FieldAttributes Attributes { get { return m_field.Attributes; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: SerializationFieldInfo ** ** ** Purpose: Provides a methods of representing imaginary fields ** which are unique to serialization. In this case, what we're ** representing is the private members of parent classes. We ** aggregate the RuntimeFieldInfo associated with this member ** and return a managled form of the name. The name that we ** return is .parentname.fieldname ** ** ============================================================*/ using System; using System.Reflection; using System.Globalization; namespace System.Runtime.Serialization { internal sealed class SerializationFieldInfo : FieldInfo { internal static readonly char FakeNameSeparatorChar = '+'; internal static readonly String FakeNameSeparatorString = "+"; private RuntimeFieldInfo m_field; private String m_serializationName; public override Module Module { get { return m_field.Module; } } public override int MetadataToken { get { return m_field.MetadataToken; } } internal SerializationFieldInfo(RuntimeFieldInfo field, String namePrefix) { BCLDebug.Assert(field!=null, "[SerializationFieldInfo.ctor]field!=null"); BCLDebug.Assert(namePrefix!=null, "[SerializationFieldInfo.ctor]namePrefix!=null"); m_field = field; m_serializationName = String.Concat(namePrefix, FakeNameSeparatorString, m_field.Name); } // // MemberInfo methods // public override String Name { get { return m_serializationName; } } public override Type DeclaringType { get { return m_field.DeclaringType; } } public override Type ReflectedType { get { return m_field.ReflectedType; } } public override Object[] GetCustomAttributes(bool inherit) { return m_field.GetCustomAttributes(inherit); } public override Object[] GetCustomAttributes(Type attributeType, bool inherit) { return m_field.GetCustomAttributes(attributeType, inherit); } public override bool IsDefined(Type attributeType, bool inherit) { return m_field.IsDefined(attributeType, inherit); } // // FieldInfo methods // public override Type FieldType { get { return m_field.FieldType; } } public override Object GetValue(Object obj) { return m_field.GetValue(obj); } internal Object InternalGetValue(Object obj, bool requiresAccessCheck) { RtFieldInfo field = m_field as RtFieldInfo; if (field != null) return field.InternalGetValue(obj, requiresAccessCheck); else return m_field.GetValue(obj); } public override void SetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture) { m_field.SetValue(obj, value, invokeAttr, binder, culture); } internal void InternalSetValue(Object obj, Object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture, bool requiresAccessCheck, bool isBinderDefault) { //m_field.InternalSetValue(obj, value, invokeAttr, binder, culture, requiresAccessCheck, isBinderDefault); RtFieldInfo field = m_field as RtFieldInfo; if (field != null) field.InternalSetValue(obj, value, invokeAttr, binder, culture, false); else m_field.SetValue(obj, value, invokeAttr, binder, culture); } internal RuntimeFieldInfo FieldInfo { get { return m_field; } } public override RuntimeFieldHandle FieldHandle { get { return m_field.FieldHandle; } } public override FieldAttributes Attributes { get { return m_field.Attributes; } } } } // 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
- LocalValueEnumerator.cs
- Composition.cs
- Tuple.cs
- PagesChangedEventArgs.cs
- DirectoryObjectSecurity.cs
- GroupLabel.cs
- URIFormatException.cs
- BuildResult.cs
- DescriptionAttribute.cs
- RowBinding.cs
- SqlBooleanizer.cs
- DBParameter.cs
- CompensatableTransactionScopeActivity.cs
- AnimatedTypeHelpers.cs
- TrackingRecord.cs
- ThreadExceptionDialog.cs
- ScriptComponentDescriptor.cs
- DynamicEndpointElement.cs
- DecimalConstantAttribute.cs
- OdbcCommand.cs
- NotifyInputEventArgs.cs
- securestring.cs
- PrintController.cs
- StagingAreaInputItem.cs
- UserPersonalizationStateInfo.cs
- Context.cs
- CompareValidator.cs
- HTTPAPI_VERSION.cs
- compensatingcollection.cs
- ScriptDescriptor.cs
- TrackingProfile.cs
- InstanceKeyCompleteException.cs
- DbConnectionPoolGroupProviderInfo.cs
- StringReader.cs
- Registry.cs
- ServiceDeploymentInfo.cs
- MailAddressCollection.cs
- PanelStyle.cs
- LogWriteRestartAreaAsyncResult.cs
- InstancePersistenceCommandException.cs
- OdbcFactory.cs
- CachingHintValidation.cs
- CurrencyWrapper.cs
- ObfuscateAssemblyAttribute.cs
- NavigateEvent.cs
- LogLogRecord.cs
- LoadedOrUnloadedOperation.cs
- Utils.cs
- CharacterString.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- AppendHelper.cs
- ExpressionEvaluator.cs
- EdmToObjectNamespaceMap.cs
- SoapCommonClasses.cs
- RegisteredDisposeScript.cs
- SqlProcedureAttribute.cs
- ToolStripDropDownMenu.cs
- BinaryMethodMessage.cs
- ColorConvertedBitmap.cs
- WebScriptMetadataInstanceContextProvider.cs
- Rotation3DAnimation.cs
- StreamingContext.cs
- ReaderWriterLock.cs
- ExpressionBuilder.cs
- CapacityStreamGeometryContext.cs
- HMACSHA256.cs
- Style.cs
- CollectionViewGroupRoot.cs
- FilterQuery.cs
- UIAgentInitializationException.cs
- TextHintingModeValidation.cs
- XmlCharCheckingReader.cs
- NotificationContext.cs
- WSDualHttpBindingElement.cs
- Part.cs
- RectangleHotSpot.cs
- AdornedElementPlaceholder.cs
- TableLayoutPanelCellPosition.cs
- DataRelation.cs
- HttpException.cs
- EditorResources.cs
- CryptoKeySecurity.cs
- ControlEvent.cs
- wgx_exports.cs
- SqlSelectStatement.cs
- CatalogZoneDesigner.cs
- SoapFault.cs
- MessageEncodingBindingElementImporter.cs
- StylusCollection.cs
- Descriptor.cs
- SystemInfo.cs
- HighlightComponent.cs
- EmptyEnumerator.cs
- XD.cs
- __Error.cs
- SerTrace.cs
- ProfessionalColors.cs
- SmiSettersStream.cs
- GACMembershipCondition.cs
- MetadataAssemblyHelper.cs