Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / NameSpaceEvent.cs / 1 / NameSpaceEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class NamespaceEvent : Event { private string namespaceUri; private string name; public NamespaceEvent(NavigatorInput input) { Debug.Assert(input != null); Debug.Assert(input.NodeType == XPathNodeType.Namespace); this.namespaceUri = input.Value; this.name = input.LocalName; } public override void ReplaceNamespaceAlias(Compiler compiler){ if (this.namespaceUri.Length != 0) { // Do we need to check this for namespace? NamespaceInfo ResultURIInfo = compiler.FindNamespaceAlias(this.namespaceUri); if (ResultURIInfo != null) { this.namespaceUri = ResultURIInfo.nameSpace; if (ResultURIInfo.prefix != null) { this.name = ResultURIInfo.prefix; } } } } public override bool Output(Processor processor, ActionFrame frame) { bool res; res = processor.BeginEvent(XPathNodeType.Namespace, /*prefix:*/null, this.name, this.namespaceUri, /*empty:*/false); Debug.Assert(res); // Namespace node as any other attribute can't fail because it doesn't signal record change res = processor.EndEvent(XPathNodeType.Namespace); Debug.Assert(res); return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class NamespaceEvent : Event { private string namespaceUri; private string name; public NamespaceEvent(NavigatorInput input) { Debug.Assert(input != null); Debug.Assert(input.NodeType == XPathNodeType.Namespace); this.namespaceUri = input.Value; this.name = input.LocalName; } public override void ReplaceNamespaceAlias(Compiler compiler){ if (this.namespaceUri.Length != 0) { // Do we need to check this for namespace? NamespaceInfo ResultURIInfo = compiler.FindNamespaceAlias(this.namespaceUri); if (ResultURIInfo != null) { this.namespaceUri = ResultURIInfo.nameSpace; if (ResultURIInfo.prefix != null) { this.name = ResultURIInfo.prefix; } } } } public override bool Output(Processor processor, ActionFrame frame) { bool res; res = processor.BeginEvent(XPathNodeType.Namespace, /*prefix:*/null, this.name, this.namespaceUri, /*empty:*/false); Debug.Assert(res); // Namespace node as any other attribute can't fail because it doesn't signal record change res = processor.EndEvent(XPathNodeType.Namespace); Debug.Assert(res); return true; } } } // 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
- CompiledQueryCacheKey.cs
- AlignmentXValidation.cs
- WebControl.cs
- AudienceUriMode.cs
- ParsedAttributeCollection.cs
- HttpRawResponse.cs
- ObjectSecurityT.cs
- RegexGroupCollection.cs
- ICspAsymmetricAlgorithm.cs
- XmlILCommand.cs
- ViewCellRelation.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- PenContexts.cs
- VisualTreeUtils.cs
- EdmToObjectNamespaceMap.cs
- WebPartCloseVerb.cs
- WebPartTransformer.cs
- TransactionInformation.cs
- DispatcherHookEventArgs.cs
- EnumValAlphaComparer.cs
- TimeSpanConverter.cs
- GraphicsContext.cs
- WebHttpBinding.cs
- GradientSpreadMethodValidation.cs
- UserControlBuildProvider.cs
- ListBoxItemWrapperAutomationPeer.cs
- IdentityHolder.cs
- CheckBoxField.cs
- XPathConvert.cs
- RegexRunnerFactory.cs
- CompositeTypefaceMetrics.cs
- Composition.cs
- AutomationElement.cs
- CultureTableRecord.cs
- NetworkInformationException.cs
- TextCompositionEventArgs.cs
- EdmComplexTypeAttribute.cs
- Font.cs
- WebBrowserNavigatingEventHandler.cs
- AttributedMetaModel.cs
- DataGridViewCellValidatingEventArgs.cs
- SqlInfoMessageEvent.cs
- JsonCollectionDataContract.cs
- SqlRecordBuffer.cs
- validation.cs
- _TLSstream.cs
- RectangleF.cs
- Menu.cs
- DataBoundControlHelper.cs
- BrowserDefinition.cs
- Attribute.cs
- AlternateViewCollection.cs
- Listbox.cs
- RootBuilder.cs
- PointValueSerializer.cs
- CacheRequest.cs
- XamlSerializer.cs
- StandardOleMarshalObject.cs
- InvokeBase.cs
- SequenceQuery.cs
- SequenceDesignerAccessibleObject.cs
- TableColumn.cs
- DllNotFoundException.cs
- GorillaCodec.cs
- HtmlSelect.cs
- CheckedPointers.cs
- NavigatingCancelEventArgs.cs
- MemberNameValidator.cs
- CodeDOMProvider.cs
- QilFunction.cs
- DATA_BLOB.cs
- ReferentialConstraint.cs
- ListViewDataItem.cs
- Misc.cs
- GrammarBuilder.cs
- TextRangeAdaptor.cs
- PropertyValueUIItem.cs
- Scanner.cs
- PassportAuthenticationEventArgs.cs
- Dynamic.cs
- remotingproxy.cs
- TypeElement.cs
- LiteralDesigner.cs
- SqlDataSourceCommandEventArgs.cs
- GeometryGroup.cs
- DateTimeFormat.cs
- Point4DConverter.cs
- DecimalConstantAttribute.cs
- MarkupExtensionParser.cs
- Completion.cs
- Preprocessor.cs
- activationcontext.cs
- TCPClient.cs
- TableRowCollection.cs
- ImageMapEventArgs.cs
- oledbconnectionstring.cs
- GlyphShapingProperties.cs
- FontStyle.cs
- PropertyGrid.cs
- WindowsHyperlink.cs