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 / Core / ValidatingReaderNodeData.cs / 1 / ValidatingReaderNodeData.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.IO; using System.Text; using System.Collections; using System.Xml.Schema; using System.Diagnostics; using System.Globalization; namespace System.Xml { internal class ValidatingReaderNodeData { string localName; string namespaceUri; string prefix; string nameWPrefix; string rawValue; string originalStringValue; // Original value int depth; AttributePSVIInfo attributePSVIInfo; //Used only for default attributes XmlNodeType nodeType; int lineNo; int linePos; public ValidatingReaderNodeData() { Clear(XmlNodeType.None); } public ValidatingReaderNodeData(XmlNodeType nodeType) { Clear(nodeType); } public string LocalName { get { return localName; } set { localName = value; } } public string Namespace { get { return namespaceUri; } set { namespaceUri = value; } } public string Prefix { get { return prefix; } set { prefix = value; } } public string GetAtomizedNameWPrefix(XmlNameTable nameTable) { if (nameWPrefix == null) { if (prefix.Length == 0 ) { nameWPrefix = localName; } else { nameWPrefix = nameTable.Add ( string.Concat (prefix,":", localName)); } } return nameWPrefix; } public int Depth { get { return depth; } set { depth = value; } } public string RawValue { get { return rawValue; } set { rawValue = value; } } public string OriginalStringValue { get { return originalStringValue; } set { originalStringValue = value; } } public XmlNodeType NodeType { get { return nodeType; } set { nodeType = value; } } public AttributePSVIInfo AttInfo { get { return attributePSVIInfo; } set { attributePSVIInfo = value; } } public int LineNumber { get { return lineNo; } } public int LinePosition { get { return linePos; } } internal void Clear( XmlNodeType nodeType ) { this.nodeType = nodeType; localName = string.Empty; prefix = string.Empty; namespaceUri = string.Empty; rawValue = string.Empty; if (attributePSVIInfo != null) { attributePSVIInfo.Reset(); } nameWPrefix = null; lineNo = 0; linePos = 0; } internal void ClearName() { localName = string.Empty; prefix = string.Empty; namespaceUri = string.Empty; } internal void SetLineInfo( int lineNo, int linePos ) { this.lineNo = lineNo; this.linePos = linePos; } internal void SetLineInfo( IXmlLineInfo lineInfo ) { if (lineInfo != null) { this.lineNo = lineInfo.LineNumber; this.linePos = lineInfo.LinePosition; } } internal void SetItemData(string localName, string prefix, string ns, string value) { this.localName = localName; this.prefix = prefix; namespaceUri = ns; rawValue = value; } internal void SetItemData(string localName, string prefix, string ns, int depth) { this.localName = localName; this.prefix = prefix; namespaceUri = ns; this.depth = depth; rawValue = string.Empty; } internal void SetItemData(string value) { SetItemData(value, value); } internal void SetItemData(string value, string originalStringValue) { rawValue = value; this.originalStringValue = originalStringValue; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.IO; using System.Text; using System.Collections; using System.Xml.Schema; using System.Diagnostics; using System.Globalization; namespace System.Xml { internal class ValidatingReaderNodeData { string localName; string namespaceUri; string prefix; string nameWPrefix; string rawValue; string originalStringValue; // Original value int depth; AttributePSVIInfo attributePSVIInfo; //Used only for default attributes XmlNodeType nodeType; int lineNo; int linePos; public ValidatingReaderNodeData() { Clear(XmlNodeType.None); } public ValidatingReaderNodeData(XmlNodeType nodeType) { Clear(nodeType); } public string LocalName { get { return localName; } set { localName = value; } } public string Namespace { get { return namespaceUri; } set { namespaceUri = value; } } public string Prefix { get { return prefix; } set { prefix = value; } } public string GetAtomizedNameWPrefix(XmlNameTable nameTable) { if (nameWPrefix == null) { if (prefix.Length == 0 ) { nameWPrefix = localName; } else { nameWPrefix = nameTable.Add ( string.Concat (prefix,":", localName)); } } return nameWPrefix; } public int Depth { get { return depth; } set { depth = value; } } public string RawValue { get { return rawValue; } set { rawValue = value; } } public string OriginalStringValue { get { return originalStringValue; } set { originalStringValue = value; } } public XmlNodeType NodeType { get { return nodeType; } set { nodeType = value; } } public AttributePSVIInfo AttInfo { get { return attributePSVIInfo; } set { attributePSVIInfo = value; } } public int LineNumber { get { return lineNo; } } public int LinePosition { get { return linePos; } } internal void Clear( XmlNodeType nodeType ) { this.nodeType = nodeType; localName = string.Empty; prefix = string.Empty; namespaceUri = string.Empty; rawValue = string.Empty; if (attributePSVIInfo != null) { attributePSVIInfo.Reset(); } nameWPrefix = null; lineNo = 0; linePos = 0; } internal void ClearName() { localName = string.Empty; prefix = string.Empty; namespaceUri = string.Empty; } internal void SetLineInfo( int lineNo, int linePos ) { this.lineNo = lineNo; this.linePos = linePos; } internal void SetLineInfo( IXmlLineInfo lineInfo ) { if (lineInfo != null) { this.lineNo = lineInfo.LineNumber; this.linePos = lineInfo.LinePosition; } } internal void SetItemData(string localName, string prefix, string ns, string value) { this.localName = localName; this.prefix = prefix; namespaceUri = ns; rawValue = value; } internal void SetItemData(string localName, string prefix, string ns, int depth) { this.localName = localName; this.prefix = prefix; namespaceUri = ns; this.depth = depth; rawValue = string.Empty; } internal void SetItemData(string value) { SetItemData(value, value); } internal void SetItemData(string value, string originalStringValue) { rawValue = value; this.originalStringValue = originalStringValue; } } } // 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
- SmtpMail.cs
- ScrollProviderWrapper.cs
- DesignerTransaction.cs
- TemplateParser.cs
- NavigationHelper.cs
- BinaryObjectInfo.cs
- GeneralTransform3DCollection.cs
- UnsafeNativeMethodsCLR.cs
- AuthenticationModuleElementCollection.cs
- ListViewDataItem.cs
- X509Chain.cs
- XmlSecureResolver.cs
- ByteStreamMessage.cs
- TextContainer.cs
- RSATokenProvider.cs
- OpenFileDialog.cs
- RepeatBehaviorConverter.cs
- EasingFunctionBase.cs
- QuaternionAnimationUsingKeyFrames.cs
- IISMapPath.cs
- KnownTypeAttribute.cs
- PolyBezierSegment.cs
- XamlBrushSerializer.cs
- PeerObject.cs
- WasEndpointConfigContainer.cs
- StringWriter.cs
- SimpleWorkerRequest.cs
- SineEase.cs
- CodeGen.cs
- FormsAuthentication.cs
- DataGridViewCellStyle.cs
- Screen.cs
- ToggleButton.cs
- WebScriptServiceHostFactory.cs
- SystemPens.cs
- AsymmetricKeyExchangeDeformatter.cs
- ChildDocumentBlock.cs
- WebPartMinimizeVerb.cs
- Binding.cs
- assertwrapper.cs
- IndicCharClassifier.cs
- ExcludeFromCodeCoverageAttribute.cs
- StateManagedCollection.cs
- RoleGroup.cs
- MULTI_QI.cs
- ScriptResourceMapping.cs
- FlowDocumentReader.cs
- HtmlInputButton.cs
- PropertyEmitterBase.cs
- DetailsViewPageEventArgs.cs
- TranslateTransform.cs
- EraserBehavior.cs
- TypeToStringValueConverter.cs
- TextElement.cs
- SponsorHelper.cs
- ProfileModule.cs
- CodeTypeMember.cs
- BinaryUtilClasses.cs
- QilSortKey.cs
- SchemaInfo.cs
- IdentityElement.cs
- AccessText.cs
- ProfileModule.cs
- ElementNotAvailableException.cs
- Floater.cs
- ToolStripMenuItemDesigner.cs
- TextEditorSpelling.cs
- XmlBufferReader.cs
- RemoteDebugger.cs
- AddInAttribute.cs
- ListComponentEditorPage.cs
- ConfigurationCollectionAttribute.cs
- ToolStripSeparator.cs
- ButtonChrome.cs
- DefaultDiscoveryService.cs
- SQLRoleProvider.cs
- VSWCFServiceContractGenerator.cs
- SafeNativeMethods.cs
- ConfigurationValue.cs
- DataColumn.cs
- ComPlusInstanceContextInitializer.cs
- NGCUIElementCollectionSerializerAsync.cs
- ObjectListFieldsPage.cs
- MultiTouchSystemGestureLogic.cs
- HyperLinkField.cs
- DesignerCatalogPartChrome.cs
- DbMetaDataFactory.cs
- _BufferOffsetSize.cs
- TimelineClockCollection.cs
- CharEnumerator.cs
- SymbolType.cs
- XmlWellformedWriterHelpers.cs
- SerializationException.cs
- TimeZone.cs
- ApplicationId.cs
- WebControl.cs
- InputLanguageManager.cs
- TextStore.cs
- HashHelper.cs
- PerCallInstanceContextProvider.cs