Code:
/ DotNET / DotNET / 8.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
- FamilyTypeface.cs
- SearchForVirtualItemEventArgs.cs
- WebSysDefaultValueAttribute.cs
- ToolStripItemClickedEventArgs.cs
- UnsafeNativeMethods.cs
- ContractHandle.cs
- RecognizerInfo.cs
- HwndSubclass.cs
- GatewayIPAddressInformationCollection.cs
- IdentityReference.cs
- AnnotationHelper.cs
- PerformanceCounterLib.cs
- _FtpDataStream.cs
- ConfigXmlCDataSection.cs
- TextEditor.cs
- InstanceNotReadyException.cs
- ComponentEditorForm.cs
- LongCountAggregationOperator.cs
- ClientUrlResolverWrapper.cs
- ContentWrapperAttribute.cs
- SourceElementsCollection.cs
- CharConverter.cs
- Font.cs
- Visual3DCollection.cs
- FilteredReadOnlyMetadataCollection.cs
- UriScheme.cs
- Item.cs
- TypeDescriptionProvider.cs
- PtsHelper.cs
- EventLogConfiguration.cs
- CapabilitiesSection.cs
- IdentityHolder.cs
- CellCreator.cs
- MasterPageParser.cs
- ProcessRequestArgs.cs
- EntityContainer.cs
- DetailsViewInsertEventArgs.cs
- HtmlGenericControl.cs
- BatchWriter.cs
- MimeXmlImporter.cs
- DbConnectionOptions.cs
- GridViewRowEventArgs.cs
- QueryParameter.cs
- HttpListenerResponse.cs
- WebBaseEventKeyComparer.cs
- CompressionTransform.cs
- SkipStoryboardToFill.cs
- KeyEventArgs.cs
- XmlCDATASection.cs
- ApplicationServiceHelper.cs
- DataGridTemplateColumn.cs
- InterleavedZipPartStream.cs
- DurationConverter.cs
- DockPanel.cs
- MarshalByValueComponent.cs
- ActiveDesignSurfaceEvent.cs
- GeometryModel3D.cs
- XPathNodeList.cs
- EmptyStringExpandableObjectConverter.cs
- ElementProxy.cs
- RSAPKCS1SignatureFormatter.cs
- nulltextnavigator.cs
- XmlSchemaObjectCollection.cs
- PlanCompilerUtil.cs
- ParseChildrenAsPropertiesAttribute.cs
- ArrangedElementCollection.cs
- SqlDataReaderSmi.cs
- ResXFileRef.cs
- LabelDesigner.cs
- VirtualizingPanel.cs
- XmlBufferReader.cs
- DecimalFormatter.cs
- XmlSchemaDatatype.cs
- XPathNavigatorException.cs
- ParameterModifier.cs
- DurableOperationContext.cs
- HwndHostAutomationPeer.cs
- ToolStripProgressBar.cs
- ParseChildrenAsPropertiesAttribute.cs
- CookielessHelper.cs
- DataControlLinkButton.cs
- CustomAttribute.cs
- SamlAssertionKeyIdentifierClause.cs
- ServiceHostingEnvironment.cs
- DBPropSet.cs
- WindowsAuthenticationModule.cs
- ConnectionManagementSection.cs
- NonBatchDirectoryCompiler.cs
- DataSourceProvider.cs
- CompilationLock.cs
- Point3DCollectionConverter.cs
- TypedServiceChannelBuilder.cs
- ResourceKey.cs
- COMException.cs
- FixedSOMFixedBlock.cs
- XmlSchemaAttributeGroup.cs
- ListViewInsertionMark.cs
- MenuEventArgs.cs
- NamespaceEmitter.cs
- TheQuery.cs