Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Globalization / EncodingDataItem.cs / 1 / EncodingDataItem.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== namespace System.Globalization { using System.Text; using System.Runtime.Remoting; using System; // // Data item for EncodingTable. Along with EncodingTable, they are used by // System.Text.Encoding. // // This class stores a pointer to the internal data and the index into that data // where our required information is found. We load the code page, flags and uiFamilyCodePage // immediately because they don't require creating an object. Creating any of the string // names is delayed until somebody actually asks for them and the names are then cached. [Serializable()] internal class CodePageDataItem { internal int m_dataIndex; internal int m_codePage; // UNUSED -- Kept for Everett serialization internal int m_uiFamilyCodePage; internal String m_webName; internal String m_headerName; internal String m_bodyName; internal String m_description; // UNUSED -- Kept for Everett serialization internal uint m_flags; unsafe internal CodePageDataItem(int dataIndex) { m_dataIndex = dataIndex; m_codePage = 0; // UNUSED -- Kept for Everett Serialization, but we always serialize a null object m_uiFamilyCodePage = EncodingTable.codePageDataPtr[dataIndex].uiFamilyCodePage; m_webName=null; m_headerName=null; m_bodyName=null; m_description=null; // UNUSED -- Kept for Everett serialization m_flags = EncodingTable.codePageDataPtr[dataIndex].flags; } virtual unsafe public String WebName { get { if (m_webName==null) { m_webName = new String(EncodingTable.codePageDataPtr[m_dataIndex].webName); } return m_webName; } } public virtual int UIFamilyCodePage { get { return m_uiFamilyCodePage; } } virtual unsafe public String HeaderName { get { if (m_headerName==null) { m_headerName = new String(EncodingTable.codePageDataPtr[m_dataIndex].headerName); } return m_headerName; } } virtual unsafe public String BodyName { get { if (m_bodyName==null) { m_bodyName = new String(EncodingTable.codePageDataPtr[m_dataIndex].bodyName); } return m_bodyName; } } virtual unsafe public uint Flags { get { return (m_flags); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectFullSpanRewriter.cs
- UpdateRecord.cs
- ClientFormsAuthenticationCredentials.cs
- DecoderExceptionFallback.cs
- ConnectionConsumerAttribute.cs
- LoaderAllocator.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- BrowserDefinitionCollection.cs
- HttpRuntimeSection.cs
- HatchBrush.cs
- XmlSchemaNotation.cs
- CheckBox.cs
- EntityTemplateFactory.cs
- ManagedFilter.cs
- NestedContainer.cs
- OutputCacheProfileCollection.cs
- Html32TextWriter.cs
- TemplateBaseAction.cs
- ToolStripRenderer.cs
- ConsoleKeyInfo.cs
- UnsafeNativeMethods.cs
- DoubleAnimationUsingKeyFrames.cs
- CasesDictionary.cs
- PrincipalPermission.cs
- Action.cs
- SessionStateItemCollection.cs
- TreeWalkHelper.cs
- SupportsEventValidationAttribute.cs
- StylusButtonCollection.cs
- DynamicDiscoSearcher.cs
- CellParaClient.cs
- CmsInterop.cs
- ExitEventArgs.cs
- arc.cs
- DataBindingCollectionEditor.cs
- StsCommunicationException.cs
- InteropAutomationProvider.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- NativeStructs.cs
- XhtmlCssHandler.cs
- OrthographicCamera.cs
- DataGridViewColumnEventArgs.cs
- BindingBase.cs
- unitconverter.cs
- Quaternion.cs
- TypeName.cs
- AnnotationHelper.cs
- MutexSecurity.cs
- StateManagedCollection.cs
- GenerateTemporaryTargetAssembly.cs
- ContextDataSource.cs
- SessionStateItemCollection.cs
- RepeatBehavior.cs
- ContentWrapperAttribute.cs
- SymLanguageVendor.cs
- ReflectionHelper.cs
- DataError.cs
- BuildProvidersCompiler.cs
- OracleBFile.cs
- ToolStripButton.cs
- StyleModeStack.cs
- ContainerActivationHelper.cs
- SequenceQuery.cs
- listitem.cs
- Collection.cs
- EncoderBestFitFallback.cs
- GeneralTransform3DTo2D.cs
- RandomNumberGenerator.cs
- ToolStripSplitStackLayout.cs
- TimelineClockCollection.cs
- SystemMulticastIPAddressInformation.cs
- DoubleStorage.cs
- DbConnectionFactory.cs
- CreateUserErrorEventArgs.cs
- MarkupCompilePass2.cs
- ModelPropertyImpl.cs
- RadioButtonStandardAdapter.cs
- AutomationEventArgs.cs
- StateRuntime.cs
- JsonReaderWriterFactory.cs
- DynamicDataRouteHandler.cs
- BorderGapMaskConverter.cs
- ObjectDesignerDataSourceView.cs
- InkCollectionBehavior.cs
- UnsafeNativeMethods.cs
- Transaction.cs
- WorkflowServiceNamespace.cs
- GiveFeedbackEvent.cs
- SocketStream.cs
- SizeF.cs
- SingleResultAttribute.cs
- UserPreferenceChangedEventArgs.cs
- XmlFormatReaderGenerator.cs
- FrameworkContentElementAutomationPeer.cs
- XmlUnspecifiedAttribute.cs
- Timer.cs
- WebPermission.cs
- WorkflowQueueInfo.cs
- SpecularMaterial.cs
- EnterpriseServicesHelper.cs