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 / XmlDeclaration.cs / 1 / XmlDeclaration.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Text; using System.Diagnostics; // Represents the xml declaration nodes: public class XmlDeclaration : XmlLinkedNode { const string YES = "yes"; const string NO = "no"; const string VERNUM = "1.0"; private string encoding; private string standalone; protected internal XmlDeclaration( string version, string encoding, string standalone, XmlDocument doc ) : base( doc ) { if ( version != VERNUM ) throw new ArgumentException( Res.GetString( Res.Xdom_Version ) ); if( ( standalone != null ) && ( standalone.Length > 0 ) ) if ( ( standalone != YES ) && ( standalone != NO ) ) throw new ArgumentException( Res.GetString(Res.Xdom_standalone, standalone) ); this.Encoding = encoding; this.Standalone = standalone; } // The version attribute (1.0) for public string Version { get { return VERNUM; } } // Specifies the value of the encoding attribute, as for // public string Encoding { get { return this.encoding; } set { this.encoding = ( (value == null) ? String.Empty : value ); } } // Specifies the value of the standalone attribute. public string Standalone { get { return this.standalone; } set { if ( value == null ) this.standalone = String.Empty; else if ( value.Length == 0 || value == YES || value == NO ) this.standalone = value; else throw new ArgumentException( Res.GetString(Res.Xdom_standalone, value) ); } } public override String Value { get { return InnerText; } set { InnerText = value; } } // Gets or sets the concatenated values of the node and // all its children. public override string InnerText { get { StringBuilder strb = new StringBuilder("version=\"" + Version + "\""); if ( Encoding.Length > 0 ) { strb.Append(" encoding=\""); strb.Append(Encoding); strb.Append("\""); } if ( Standalone.Length > 0 ) { strb.Append(" standalone=\""); strb.Append(Standalone); strb.Append("\""); } return strb.ToString(); } set { string tempVersion = null; string tempEncoding = null; string tempStandalone = null; string orgEncoding = this.Encoding; string orgStandalone = this.Standalone; XmlLoader.ParseXmlDeclarationValue( value, out tempVersion, out tempEncoding, out tempStandalone ); try { if ( tempVersion != null && tempVersion != VERNUM ) throw new ArgumentException(Res.GetString(Res.Xdom_Version)); if ( tempEncoding != null ) Encoding = tempEncoding; if ( tempStandalone != null ) Standalone = tempStandalone; } catch { Encoding = orgEncoding; Standalone = orgStandalone; throw; } } } //override methods and properties from XmlNode // Gets the name of the node. public override String Name { get { return "xml"; } } // 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.XmlDeclaration;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateXmlDeclaration( Version, Encoding, Standalone ); } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteProcessingInstruction(Name, InnerText); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing since the node doesn't have children. } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Text; using System.Diagnostics; // Represents the xml declaration nodes: public class XmlDeclaration : XmlLinkedNode { const string YES = "yes"; const string NO = "no"; const string VERNUM = "1.0"; private string encoding; private string standalone; protected internal XmlDeclaration( string version, string encoding, string standalone, XmlDocument doc ) : base( doc ) { if ( version != VERNUM ) throw new ArgumentException( Res.GetString( Res.Xdom_Version ) ); if( ( standalone != null ) && ( standalone.Length > 0 ) ) if ( ( standalone != YES ) && ( standalone != NO ) ) throw new ArgumentException( Res.GetString(Res.Xdom_standalone, standalone) ); this.Encoding = encoding; this.Standalone = standalone; } // The version attribute (1.0) for public string Version { get { return VERNUM; } } // Specifies the value of the encoding attribute, as for // public string Encoding { get { return this.encoding; } set { this.encoding = ( (value == null) ? String.Empty : value ); } } // Specifies the value of the standalone attribute. public string Standalone { get { return this.standalone; } set { if ( value == null ) this.standalone = String.Empty; else if ( value.Length == 0 || value == YES || value == NO ) this.standalone = value; else throw new ArgumentException( Res.GetString(Res.Xdom_standalone, value) ); } } public override String Value { get { return InnerText; } set { InnerText = value; } } // Gets or sets the concatenated values of the node and // all its children. public override string InnerText { get { StringBuilder strb = new StringBuilder("version=\"" + Version + "\""); if ( Encoding.Length > 0 ) { strb.Append(" encoding=\""); strb.Append(Encoding); strb.Append("\""); } if ( Standalone.Length > 0 ) { strb.Append(" standalone=\""); strb.Append(Standalone); strb.Append("\""); } return strb.ToString(); } set { string tempVersion = null; string tempEncoding = null; string tempStandalone = null; string orgEncoding = this.Encoding; string orgStandalone = this.Standalone; XmlLoader.ParseXmlDeclarationValue( value, out tempVersion, out tempEncoding, out tempStandalone ); try { if ( tempVersion != null && tempVersion != VERNUM ) throw new ArgumentException(Res.GetString(Res.Xdom_Version)); if ( tempEncoding != null ) Encoding = tempEncoding; if ( tempStandalone != null ) Standalone = tempStandalone; } catch { Encoding = orgEncoding; Standalone = orgStandalone; throw; } } } //override methods and properties from XmlNode // Gets the name of the node. public override String Name { get { return "xml"; } } // 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.XmlDeclaration;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateXmlDeclaration( Version, Encoding, Standalone ); } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteProcessingInstruction(Name, InnerText); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing since the node doesn't have children. } } } // 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
- BroadcastEventHelper.cs
- NativeMethods.cs
- XhtmlBasicPanelAdapter.cs
- DummyDataSource.cs
- MsmqInputChannelListenerBase.cs
- TdsParserStateObject.cs
- CustomTypeDescriptor.cs
- X509AsymmetricSecurityKey.cs
- SapiInterop.cs
- RelativeSource.cs
- _LocalDataStore.cs
- SqlError.cs
- X509SecurityToken.cs
- Light.cs
- TextParaClient.cs
- QualificationDataItem.cs
- ByteAnimation.cs
- CqlLexerHelpers.cs
- ClosureBinding.cs
- XmlTextReaderImpl.cs
- StateMachineWorkflowDesigner.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- ConstrainedDataObject.cs
- CollectionContainer.cs
- SqlServices.cs
- ProviderConnectionPointCollection.cs
- SafeArchiveContext.cs
- TrackingParameters.cs
- State.cs
- AspNetSynchronizationContext.cs
- PipelineModuleStepContainer.cs
- DynamicRouteExpression.cs
- RawUIStateInputReport.cs
- PrivilegeNotHeldException.cs
- TableLayoutCellPaintEventArgs.cs
- MimeMultiPart.cs
- RadioButton.cs
- ServiceReflector.cs
- BoundsDrawingContextWalker.cs
- TypeInitializationException.cs
- Evaluator.cs
- SqlTransaction.cs
- GeometryModel3D.cs
- columnmapkeybuilder.cs
- HttpCookiesSection.cs
- CqlIdentifiers.cs
- EntityDesignerBuildProvider.cs
- EventRoute.cs
- ClassData.cs
- FramingFormat.cs
- UInt32Storage.cs
- ConsoleTraceListener.cs
- XslTransform.cs
- Drawing.cs
- SevenBitStream.cs
- SectionVisual.cs
- SafeLibraryHandle.cs
- DataGridViewCellValidatingEventArgs.cs
- SuppressIldasmAttribute.cs
- WCFServiceClientProxyGenerator.cs
- EventLogPermissionHolder.cs
- ParserExtension.cs
- ContainerControl.cs
- DocumentApplication.cs
- WebPartConnectionsDisconnectVerb.cs
- BindingRestrictions.cs
- DataProviderNameConverter.cs
- FilteredDataSetHelper.cs
- TouchPoint.cs
- MachineKeyConverter.cs
- PatternMatcher.cs
- MetadataArtifactLoaderResource.cs
- Component.cs
- ProfileEventArgs.cs
- FeatureAttribute.cs
- SqlNotificationRequest.cs
- RandomNumberGenerator.cs
- TextServicesHost.cs
- KeyProperty.cs
- SiteOfOriginPart.cs
- DBCommandBuilder.cs
- DrawingVisual.cs
- MasterPageParser.cs
- IPipelineRuntime.cs
- CultureInfo.cs
- SwitchElementsCollection.cs
- DBSqlParserTable.cs
- RootProfilePropertySettingsCollection.cs
- TraceProvider.cs
- Latin1Encoding.cs
- CodeMemberMethod.cs
- NetDispatcherFaultException.cs
- FamilyMap.cs
- ConfigurationLoaderException.cs
- WebBrowser.cs
- FormsAuthenticationModule.cs
- DocumentPageHost.cs
- OutputWindow.cs
- LayoutEditorPart.cs
- HitTestDrawingContextWalker.cs