Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Core / XmlParserContext.cs / 1305376 / XmlParserContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Xml; using System.Text; using System; namespace System.Xml { // Specifies the context that the XmLReader will use for xml fragment public class XmlParserContext { private XmlNameTable _nt = null; private XmlNamespaceManager _nsMgr = null; private String _docTypeName = String.Empty; private String _pubId = String.Empty; private String _sysId = String.Empty; private String _internalSubset = String.Empty; private String _xmlLang = String.Empty; private XmlSpace _xmlSpace; private String _baseURI = String.Empty; private Encoding _encoding = null; public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr,String xmlLang, XmlSpace xmlSpace) : this(nt, nsMgr, null, null, null, null, String.Empty, xmlLang, xmlSpace) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr,String xmlLang, XmlSpace xmlSpace, Encoding enc) : this(nt, nsMgr, null, null, null, null, String.Empty, xmlLang, xmlSpace, enc) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, String docTypeName, String pubId, String sysId, String internalSubset, String baseURI, String xmlLang, XmlSpace xmlSpace) : this(nt, nsMgr, docTypeName, pubId, sysId, internalSubset, baseURI, xmlLang, xmlSpace, null) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, String docTypeName, String pubId, String sysId, String internalSubset, String baseURI, String xmlLang, XmlSpace xmlSpace, Encoding enc) { if (nsMgr != null) { if (nt == null) { _nt = nsMgr.NameTable; } else { if ( (object)nt != (object) nsMgr.NameTable ) { throw new XmlException(Res.Xml_NotSameNametable, string.Empty); } _nt = nt; } } else { _nt = nt; } _nsMgr = nsMgr; _docTypeName = (null == docTypeName ? String.Empty : docTypeName); _pubId = (null == pubId ? String.Empty : pubId); _sysId = (null == sysId ? String.Empty : sysId); _internalSubset = (null == internalSubset ? String.Empty : internalSubset); _baseURI = (null == baseURI ? String.Empty : baseURI); _xmlLang = (null == xmlLang ? String.Empty : xmlLang); _xmlSpace = xmlSpace; _encoding = enc; } public XmlNameTable NameTable { get { return _nt; } set { _nt = value; } } public XmlNamespaceManager NamespaceManager { get { return _nsMgr; } set { _nsMgr = value; } } public String DocTypeName { get { return _docTypeName; } set { _docTypeName = (null == value ? String.Empty : value); } } public String PublicId { get { return _pubId; } set { _pubId = (null == value ? String.Empty : value); } } public String SystemId { get { return _sysId; } set { _sysId = (null == value ? String.Empty : value); } } public String BaseURI { get { return _baseURI; } set { _baseURI = (null == value ? String.Empty : value); } } public String InternalSubset { get { return _internalSubset; } set { _internalSubset = (null == value ? String.Empty : value); } } public String XmlLang { get { return _xmlLang; } set { _xmlLang = (null == value ? String.Empty : value); } } public XmlSpace XmlSpace { get { return _xmlSpace; } set { _xmlSpace = value; } } public Encoding Encoding { get { return _encoding; } set { _encoding = value; } } internal bool HasDtdInfo { get { return ( _internalSubset != string.Empty || _pubId != string.Empty || _sysId != string.Empty ); } } } // class XmlContext } // namespace System.Xml // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System.Xml; using System.Text; using System; namespace System.Xml { // Specifies the context that the XmLReader will use for xml fragment public class XmlParserContext { private XmlNameTable _nt = null; private XmlNamespaceManager _nsMgr = null; private String _docTypeName = String.Empty; private String _pubId = String.Empty; private String _sysId = String.Empty; private String _internalSubset = String.Empty; private String _xmlLang = String.Empty; private XmlSpace _xmlSpace; private String _baseURI = String.Empty; private Encoding _encoding = null; public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr,String xmlLang, XmlSpace xmlSpace) : this(nt, nsMgr, null, null, null, null, String.Empty, xmlLang, xmlSpace) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr,String xmlLang, XmlSpace xmlSpace, Encoding enc) : this(nt, nsMgr, null, null, null, null, String.Empty, xmlLang, xmlSpace, enc) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, String docTypeName, String pubId, String sysId, String internalSubset, String baseURI, String xmlLang, XmlSpace xmlSpace) : this(nt, nsMgr, docTypeName, pubId, sysId, internalSubset, baseURI, xmlLang, xmlSpace, null) { // Intentionally Empty } public XmlParserContext(XmlNameTable nt, XmlNamespaceManager nsMgr, String docTypeName, String pubId, String sysId, String internalSubset, String baseURI, String xmlLang, XmlSpace xmlSpace, Encoding enc) { if (nsMgr != null) { if (nt == null) { _nt = nsMgr.NameTable; } else { if ( (object)nt != (object) nsMgr.NameTable ) { throw new XmlException(Res.Xml_NotSameNametable, string.Empty); } _nt = nt; } } else { _nt = nt; } _nsMgr = nsMgr; _docTypeName = (null == docTypeName ? String.Empty : docTypeName); _pubId = (null == pubId ? String.Empty : pubId); _sysId = (null == sysId ? String.Empty : sysId); _internalSubset = (null == internalSubset ? String.Empty : internalSubset); _baseURI = (null == baseURI ? String.Empty : baseURI); _xmlLang = (null == xmlLang ? String.Empty : xmlLang); _xmlSpace = xmlSpace; _encoding = enc; } public XmlNameTable NameTable { get { return _nt; } set { _nt = value; } } public XmlNamespaceManager NamespaceManager { get { return _nsMgr; } set { _nsMgr = value; } } public String DocTypeName { get { return _docTypeName; } set { _docTypeName = (null == value ? String.Empty : value); } } public String PublicId { get { return _pubId; } set { _pubId = (null == value ? String.Empty : value); } } public String SystemId { get { return _sysId; } set { _sysId = (null == value ? String.Empty : value); } } public String BaseURI { get { return _baseURI; } set { _baseURI = (null == value ? String.Empty : value); } } public String InternalSubset { get { return _internalSubset; } set { _internalSubset = (null == value ? String.Empty : value); } } public String XmlLang { get { return _xmlLang; } set { _xmlLang = (null == value ? String.Empty : value); } } public XmlSpace XmlSpace { get { return _xmlSpace; } set { _xmlSpace = value; } } public Encoding Encoding { get { return _encoding; } set { _encoding = value; } } internal bool HasDtdInfo { get { return ( _internalSubset != string.Empty || _pubId != string.Empty || _sysId != string.Empty ); } } } // class XmlContext } // namespace System.Xml // 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
- CapiNative.cs
- DoubleIndependentAnimationStorage.cs
- DataGridViewAdvancedBorderStyle.cs
- GridProviderWrapper.cs
- GlobalItem.cs
- LOSFormatter.cs
- OneOfTypeConst.cs
- XpsColorContext.cs
- URI.cs
- AssemblyInfo.cs
- XmlSchemaParticle.cs
- IChannel.cs
- WebPartCollection.cs
- ZoneButton.cs
- HttpCapabilitiesBase.cs
- CursorConverter.cs
- Int64Storage.cs
- CompareValidator.cs
- Visual3DCollection.cs
- ScrollableControl.cs
- Funcletizer.cs
- UIElement.cs
- DataSourceXmlClassAttribute.cs
- UpdatePanel.cs
- PropertyGridView.cs
- ToolStripDropDownItem.cs
- MouseGesture.cs
- SpecularMaterial.cs
- RoutedPropertyChangedEventArgs.cs
- ObjectManager.cs
- cryptoapiTransform.cs
- PresentationSource.cs
- CreateDataSourceDialog.cs
- CqlBlock.cs
- AssemblyResourceLoader.cs
- SettingsAttributeDictionary.cs
- TaskHelper.cs
- BatchWriter.cs
- Int16Converter.cs
- TypefaceMap.cs
- AttachmentCollection.cs
- AppDomainManager.cs
- ToolstripProfessionalRenderer.cs
- HitTestWithGeometryDrawingContextWalker.cs
- Viewport3DVisual.cs
- InputManager.cs
- SqlWorkflowPersistenceService.cs
- RuntimeComponentFilter.cs
- CollectionChangeEventArgs.cs
- FreezableCollection.cs
- ReadOnlyHierarchicalDataSourceView.cs
- QueryResult.cs
- TextEffectResolver.cs
- FixedNode.cs
- DataGridViewSortCompareEventArgs.cs
- ECDsaCng.cs
- KeyedHashAlgorithm.cs
- ObjectDataSource.cs
- Wildcard.cs
- SiteMapDataSourceDesigner.cs
- NumberFunctions.cs
- FormViewInsertedEventArgs.cs
- AtomPub10ServiceDocumentFormatter.cs
- InkCollectionBehavior.cs
- WebPartHelpVerb.cs
- StaticSiteMapProvider.cs
- GuidelineCollection.cs
- PeerNameRegistration.cs
- DurableInstanceManager.cs
- WindowsFormsSynchronizationContext.cs
- XPathNodeHelper.cs
- Transactions.cs
- ConfigurationManagerInternalFactory.cs
- UnsafeNativeMethods.cs
- HebrewNumber.cs
- EmulateRecognizeCompletedEventArgs.cs
- ActivatableWorkflowsQueryResult.cs
- ByteFacetDescriptionElement.cs
- DesignerEventService.cs
- SqlUserDefinedAggregateAttribute.cs
- InternalConfigConfigurationFactory.cs
- MethodBuilderInstantiation.cs
- ConnectorSelectionGlyph.cs
- WebSysDescriptionAttribute.cs
- ThreadAttributes.cs
- UnsafeNativeMethods.cs
- ProfileSettingsCollection.cs
- MSHTMLHost.cs
- Brush.cs
- SizeAnimationClockResource.cs
- InkPresenter.cs
- WbemProvider.cs
- XmlFormatExtensionPointAttribute.cs
- SelectionItemProviderWrapper.cs
- TabItemAutomationPeer.cs
- AppearanceEditorPart.cs
- TargetControlTypeAttribute.cs
- HttpListenerPrefixCollection.cs
- SmiEventSink_DeferedProcessing.cs
- BoundColumn.cs