Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / Dom / XmlDocumentType.cs / 1 / XmlDocumentType.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.Schema; using System.Diagnostics; // Contains information associated with the document type declaration. public class XmlDocumentType : XmlLinkedNode { string name; string publicId; string systemId; string internalSubset; bool namespaces; XmlNamedNodeMap entities; XmlNamedNodeMap notations; // parsed DTD SchemaInfo schemaInfo; protected internal XmlDocumentType( string name, string publicId, string systemId, string internalSubset, XmlDocument doc ) : base( doc ) { this.name = name; this.publicId = publicId; this.systemId = systemId; this.namespaces = true; this.internalSubset = internalSubset; Debug.Assert( doc != null ); if ( !doc.IsLoading ) { doc.IsLoading = true; XmlLoader loader = new XmlLoader(); loader.ParseDocumentType( this ); //will edit notation nodes, etc. doc.IsLoading = false; } } // Gets the name of the node. public override string Name { get { return name;} } // Gets the name of the current node without the namespace prefix. public override string LocalName { get { return name;} } // Gets the type of the current node. public override XmlNodeType NodeType { get { return XmlNodeType.DocumentType;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateDocumentType( name, publicId, systemId, internalSubset ); } // // Microsoft extensions // // Gets a value indicating whether the node is read-only. public override bool IsReadOnly { get { return true; // Make entities and notations readonly } } // Gets the collection of XmlEntity nodes declared in the document type declaration. public XmlNamedNodeMap Entities { get { if (entities == null) entities = new XmlNamedNodeMap( this ); return entities; } } // Gets the collection of XmlNotation nodes present in the document type declaration. public XmlNamedNodeMap Notations { get { if (notations == null) notations = new XmlNamedNodeMap( this ); return notations; } } // // DOM Level 2 // // Gets the value of the public identifier on the DOCTYPE declaration. public string PublicId { get { return publicId;} } // Gets the value of // the system identifier on the DOCTYPE declaration. public string SystemId { get { return systemId;} } // Gets the entire value of the DTD internal subset // on the DOCTYPE declaration. public string InternalSubset { get { return internalSubset;} } internal bool ParseWithNamespaces { get { return namespaces; } set { namespaces = value; } } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteDocType( name, publicId, systemId, internalSubset ); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing } internal SchemaInfo DtdSchemaInfo { get { return schemaInfo; } set { schemaInfo = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.Schema; using System.Diagnostics; // Contains information associated with the document type declaration. public class XmlDocumentType : XmlLinkedNode { string name; string publicId; string systemId; string internalSubset; bool namespaces; XmlNamedNodeMap entities; XmlNamedNodeMap notations; // parsed DTD SchemaInfo schemaInfo; protected internal XmlDocumentType( string name, string publicId, string systemId, string internalSubset, XmlDocument doc ) : base( doc ) { this.name = name; this.publicId = publicId; this.systemId = systemId; this.namespaces = true; this.internalSubset = internalSubset; Debug.Assert( doc != null ); if ( !doc.IsLoading ) { doc.IsLoading = true; XmlLoader loader = new XmlLoader(); loader.ParseDocumentType( this ); //will edit notation nodes, etc. doc.IsLoading = false; } } // Gets the name of the node. public override string Name { get { return name;} } // Gets the name of the current node without the namespace prefix. public override string LocalName { get { return name;} } // Gets the type of the current node. public override XmlNodeType NodeType { get { return XmlNodeType.DocumentType;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateDocumentType( name, publicId, systemId, internalSubset ); } // // Microsoft extensions // // Gets a value indicating whether the node is read-only. public override bool IsReadOnly { get { return true; // Make entities and notations readonly } } // Gets the collection of XmlEntity nodes declared in the document type declaration. public XmlNamedNodeMap Entities { get { if (entities == null) entities = new XmlNamedNodeMap( this ); return entities; } } // Gets the collection of XmlNotation nodes present in the document type declaration. public XmlNamedNodeMap Notations { get { if (notations == null) notations = new XmlNamedNodeMap( this ); return notations; } } // // DOM Level 2 // // Gets the value of the public identifier on the DOCTYPE declaration. public string PublicId { get { return publicId;} } // Gets the value of // the system identifier on the DOCTYPE declaration. public string SystemId { get { return systemId;} } // Gets the entire value of the DTD internal subset // on the DOCTYPE declaration. public string InternalSubset { get { return internalSubset;} } internal bool ParseWithNamespaces { get { return namespaces; } set { namespaces = value; } } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteDocType( name, publicId, systemId, internalSubset ); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing } internal SchemaInfo DtdSchemaInfo { get { return schemaInfo; } set { schemaInfo = value; } } } } // 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
- Number.cs
- DeclarativeCatalogPart.cs
- CriticalHandle.cs
- CTreeGenerator.cs
- TraceInternal.cs
- InlineObject.cs
- RelationshipEnd.cs
- CallbackDebugBehavior.cs
- FrameworkElementAutomationPeer.cs
- PerformanceCounterManager.cs
- SafeRegistryHandle.cs
- EventRouteFactory.cs
- CancellationTokenSource.cs
- DateTimeOffsetConverter.cs
- NullableBoolConverter.cs
- DropShadowEffect.cs
- ChangeBlockUndoRecord.cs
- SspiNegotiationTokenAuthenticator.cs
- BindingValueChangedEventArgs.cs
- DispatcherHooks.cs
- DataStreams.cs
- QuaternionIndependentAnimationStorage.cs
- IdentitySection.cs
- PathFigureCollectionConverter.cs
- OutputCacheSection.cs
- PropertyInfoSet.cs
- JournalEntryListConverter.cs
- FileDialog.cs
- FilePresentation.cs
- WebPartTransformerAttribute.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- SafeLocalMemHandle.cs
- ResourceDescriptionAttribute.cs
- NGCPageContentCollectionSerializerAsync.cs
- Matrix3DConverter.cs
- MDIClient.cs
- SoapExtensionImporter.cs
- DataGridViewRowCollection.cs
- BitmapCacheBrush.cs
- FtpWebResponse.cs
- Int32Storage.cs
- SchemaConstraints.cs
- NamedPipeChannelFactory.cs
- Reference.cs
- TextElement.cs
- CodeArrayIndexerExpression.cs
- ClientCultureInfo.cs
- controlskin.cs
- ErrorTolerantObjectWriter.cs
- DescendantOverDescendantQuery.cs
- CodeIdentifier.cs
- MenuCommands.cs
- BinaryFormatterWriter.cs
- GradientStop.cs
- securestring.cs
- PnrpPermission.cs
- TextParaLineResult.cs
- TableCellAutomationPeer.cs
- DataTemplateKey.cs
- ContractSearchPattern.cs
- XhtmlBasicPageAdapter.cs
- EnlistmentState.cs
- ScriptRegistrationManager.cs
- BufferModeSettings.cs
- DesignerObjectListAdapter.cs
- MarkupExtensionReturnTypeAttribute.cs
- SignatureTargetIdManager.cs
- RC2.cs
- TdsParserStateObject.cs
- DecimalStorage.cs
- MemberAccessException.cs
- COM2PictureConverter.cs
- Base64Decoder.cs
- CompoundFileStorageReference.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- Parsers.cs
- ToolZone.cs
- EntryPointNotFoundException.cs
- NetStream.cs
- VisualTreeFlattener.cs
- PropertyItemInternal.cs
- ActivatableWorkflowsQueryResult.cs
- CmsInterop.cs
- SerializationInfo.cs
- DrawingContext.cs
- InputBinder.cs
- SerializationIncompleteException.cs
- XmlSerializationReader.cs
- IDQuery.cs
- KoreanCalendar.cs
- Application.cs
- MailMessage.cs
- SafeWaitHandle.cs
- Simplifier.cs
- UserControl.cs
- OracleLob.cs
- _ScatterGatherBuffers.cs
- DataList.cs
- ChangeInterceptorAttribute.cs
- MimeFormatExtensions.cs