Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Print / Reach / Serialization / manager / ReachBasicContext.cs / 1 / ReachBasicContext.cs
/*++ Copyright (C) 2004- 2005 Microsoft Corporation All rights reserved. Module Name: ReachBasicContext.cs Abstract: The file contains the definition of a class defining a context object which define the basic properties defining an object. 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 abstract class BasicContext { #region Constructor ////// Instantiates a BasicContext /// public BasicContext( string name, string prefix) { this._name = name; this._prefix = prefix; } ////// Instantiates a BasicContext with /// null Data. Data can be initialized /// later. /// public BasicContext() { Initialize(); } #endregion Constructor #region Public Properties ////// Query/Set the Name of the context /// public string Name { get { return _name; } set { _name = value; } } ////// Query/Set the prefix of the context /// public string Prefix { get { return _prefix; } set { _prefix = value; } } #endregion Public Properties #region Public Methods ////// Initialize the internal Properties /// public void Initialize() { _name = null; _prefix = null; } ////// Clears the internal properties /// public virtual void Clear() { _name = null; _prefix = null; } #endregion Public Methods #region Private Data private string _name; private string _prefix; #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
- BridgeDataRecord.cs
- SrgsSubset.cs
- designeractionlistschangedeventargs.cs
- BinaryUtilClasses.cs
- QilBinary.cs
- SmiTypedGetterSetter.cs
- SharedUtils.cs
- DefaultEventAttribute.cs
- DrawingGroup.cs
- FormViewUpdatedEventArgs.cs
- TableFieldsEditor.cs
- BypassElementCollection.cs
- Activator.cs
- TextBoxView.cs
- BitConverter.cs
- Pens.cs
- ResourceSet.cs
- DBConnectionString.cs
- SoapEnumAttribute.cs
- SafeFindHandle.cs
- DoubleIndependentAnimationStorage.cs
- Button.cs
- TemplateControlBuildProvider.cs
- SplineKeyFrames.cs
- NotCondition.cs
- xml.cs
- PageBuildProvider.cs
- DataGridViewCheckBoxColumn.cs
- TriggerBase.cs
- DecimalKeyFrameCollection.cs
- ProfileManager.cs
- KerberosTokenFactoryCredential.cs
- ControlType.cs
- ResourceDefaultValueAttribute.cs
- odbcmetadatacollectionnames.cs
- HoistedLocals.cs
- FigureHelper.cs
- KeyedByTypeCollection.cs
- _SslSessionsCache.cs
- GridViewUpdateEventArgs.cs
- WebPartEditVerb.cs
- DataGridViewMethods.cs
- mediaeventshelper.cs
- DrawListViewItemEventArgs.cs
- FixedSOMFixedBlock.cs
- Membership.cs
- ImageEditor.cs
- DefaultPropertyAttribute.cs
- HelpInfo.cs
- SqlUtils.cs
- XPathDocumentIterator.cs
- DependencyObjectType.cs
- FormsAuthenticationUserCollection.cs
- VBIdentifierNameEditor.cs
- Listen.cs
- UriParserTemplates.cs
- CompiledAction.cs
- LeaseManager.cs
- OptimizedTemplateContent.cs
- ProxyWebPartConnectionCollection.cs
- COM2TypeInfoProcessor.cs
- URLIdentityPermission.cs
- ToolboxComponentsCreatingEventArgs.cs
- SignerInfo.cs
- DeleteStoreRequest.cs
- KeyInstance.cs
- PopOutPanel.cs
- FtpWebRequest.cs
- StylusCollection.cs
- CompiledRegexRunner.cs
- SoapInteropTypes.cs
- MenuItemStyleCollection.cs
- APCustomTypeDescriptor.cs
- ProfilePropertySettingsCollection.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- SecurityKeyType.cs
- WindowAutomationPeer.cs
- BitmapEffectGroup.cs
- QilXmlReader.cs
- TrackingServices.cs
- ButtonColumn.cs
- AffineTransform3D.cs
- WebPartEditorOkVerb.cs
- PEFileReader.cs
- PropertyGrid.cs
- ClipboardData.cs
- DSASignatureDeformatter.cs
- PersonalizationStateQuery.cs
- Form.cs
- PageStatePersister.cs
- CachedCompositeFamily.cs
- UTF8Encoding.cs
- SynchronizedInputAdaptor.cs
- DataGridViewComboBoxColumn.cs
- RecordConverter.cs
- ScalarConstant.cs
- XPathParser.cs
- TemplateGroupCollection.cs
- X509Utils.cs
- UnaryExpressionHelper.cs