Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / ReachNamespaceInfo.cs / 1 / ReachNamespaceInfo.cs
/*++
Copyright (C) 2004- 2005 Microsoft Corporation
All rights reserved.
Module Name:
ReachNamespaceInfo.cs
Abstract:
Contains the class definition of some classes
that maintain the NameSpaces specific information.
Author:
[....] ([....]) 1-December-2004
Revision History:
--*/
using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Diagnostics;
using System.Reflection;
using System.Xml;
using System.IO;
using System.Security;
using System.Security.Permissions;
using System.ComponentModel.Design.Serialization;
using System.Windows.Xps.Packaging;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Markup;
namespace System.Windows.Xps.Serialization
{
internal class SerializableObjectNamespaceInfo
{
#region Constructor
internal
SerializableObjectNamespaceInfo(
Type type,
string prefix,
string xmlNamespace
) :
this(type.Namespace, prefix, xmlNamespace)
{
}
internal
SerializableObjectNamespaceInfo(
string clrNamespace,
string prefix,
string xmlNamespace
)
{
this._xmlNamespace = xmlNamespace;
this._clrNamespace = clrNamespace;
this._prefix = prefix;
}
#endregion Constructor
#region Internal Properties
internal
string
Prefix
{
get
{
return _prefix;
}
}
internal
string
XmlNamespace
{
get
{
return _xmlNamespace;
}
}
internal
string
ClrNamespace
{
get
{
return _clrNamespace;
}
}
#endregion Internal Properties
#region Private Data
private readonly string _prefix;
private readonly string _xmlNamespace;
private readonly string _clrNamespace;
#endregion Private Data
};
internal class MetroSerializationNamespaceTable
{
#region Constructor
internal
MetroSerializationNamespaceTable(
MetroSerializationNamespaceTable parent
)
{
Initialize(parent);
}
#endregion Constructor
#region Internal Properties
internal
SerializableObjectNamespaceInfo
this[Type type]
{
get
{
return (SerializableObjectNamespaceInfo)_innerDictionary[type];
}
set
{
_innerDictionary[type] = value;
}
}
#endregion Internal Properties
#region Internal Methods
internal
bool
Contains(
Type type
)
{
return _innerDictionary.Contains(type);
}
internal
void
Add(
Type type,
SerializableObjectNamespaceInfo namespaceInfo)
{
_innerDictionary.Add(type, namespaceInfo);
}
internal
void
Initialize(
MetroSerializationNamespaceTable parent
)
{
_innerDictionary = new Hashtable(11);
}
#endregion Internal Methods
#region Private Data
private IDictionary _innerDictionary;
#endregion Private Data
};
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ImpersonationContext.cs
- ExeConfigurationFileMap.cs
- FileVersionInfo.cs
- CodeTypeParameterCollection.cs
- HostExecutionContextManager.cs
- CodeDirectionExpression.cs
- XMLDiffLoader.cs
- WebZone.cs
- LoadedEvent.cs
- TypeHelper.cs
- SoapUnknownHeader.cs
- Utility.cs
- TextTrailingWordEllipsis.cs
- Visual.cs
- InvalidComObjectException.cs
- ColorIndependentAnimationStorage.cs
- CodeDomConfigurationHandler.cs
- SessionStateContainer.cs
- TextRangeSerialization.cs
- DrawingContextWalker.cs
- TextBoxRenderer.cs
- MergeFailedEvent.cs
- UrlAuthorizationModule.cs
- SectionInformation.cs
- BackgroundFormatInfo.cs
- ImageCodecInfoPrivate.cs
- SingleTagSectionHandler.cs
- Constants.cs
- XmlAnyElementAttribute.cs
- mediaeventshelper.cs
- ProfileSettingsCollection.cs
- InternalsVisibleToAttribute.cs
- ZipFileInfoCollection.cs
- EntitySetBase.cs
- QueryResults.cs
- EncoderReplacementFallback.cs
- SmiRecordBuffer.cs
- BitmapEffectDrawing.cs
- RequestQueue.cs
- DesignerForm.cs
- PropertyPath.cs
- Codec.cs
- _FixedSizeReader.cs
- COSERVERINFO.cs
- CompositeDataBoundControl.cs
- AttributeProviderAttribute.cs
- Proxy.cs
- ObjectContextServiceProvider.cs
- RemotingServices.cs
- UInt32Converter.cs
- ForEachAction.cs
- ProcessModule.cs
- WorkflowInstanceSuspendedRecord.cs
- AddDataControlFieldDialog.cs
- SettingsPropertyCollection.cs
- Italic.cs
- OledbConnectionStringbuilder.cs
- WaitHandle.cs
- MarkupExtensionReturnTypeAttribute.cs
- Match.cs
- Message.cs
- QilScopedVisitor.cs
- Geometry3D.cs
- PersonalizablePropertyEntry.cs
- ParseChildrenAsPropertiesAttribute.cs
- OutputWindow.cs
- GridViewRowCollection.cs
- X509ServiceCertificateAuthentication.cs
- ProtocolsConfigurationHandler.cs
- LabelLiteral.cs
- FixUp.cs
- ProjectionCamera.cs
- ButtonBaseAutomationPeer.cs
- CompModSwitches.cs
- SerialErrors.cs
- BitmapEffect.cs
- ListMarkerSourceInfo.cs
- FragmentNavigationEventArgs.cs
- DbDataRecord.cs
- BitmapMetadata.cs
- Vector3DCollectionConverter.cs
- listitem.cs
- DataGridViewBindingCompleteEventArgs.cs
- Stack.cs
- TrackingAnnotationCollection.cs
- Rect3DValueSerializer.cs
- LocatorManager.cs
- DataGridSortCommandEventArgs.cs
- AsynchronousChannel.cs
- DBConnection.cs
- FixedSOMPageConstructor.cs
- Pair.cs
- ToolboxItemCollection.cs
- WorkflowIdleBehavior.cs
- XmlILOptimizerVisitor.cs
- InstalledFontCollection.cs
- PropertyOverridesTypeEditor.cs
- WebPartConnectionsCancelEventArgs.cs
- _HeaderInfo.cs
- ImportContext.cs