Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / NameSpaceEvent.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SchemaImporterExtensionElementCollection.cs
- TrailingSpaceComparer.cs
- ConfigurationElement.cs
- ScrollChrome.cs
- ObjectDisposedException.cs
- DesignerCatalogPartChrome.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- ConfigXmlText.cs
- ParserContext.cs
- ColumnWidthChangingEvent.cs
- Brush.cs
- ServiceDurableInstance.cs
- ISAPIWorkerRequest.cs
- ResourceExpressionBuilder.cs
- SessionStateContainer.cs
- Rectangle.cs
- TranslateTransform3D.cs
- DesignBindingValueUIHandler.cs
- HtmlControl.cs
- AuthenticationModuleElementCollection.cs
- RegistryExceptionHelper.cs
- WebZone.cs
- LoadRetryAsyncResult.cs
- RegistryPermission.cs
- MenuItemCollection.cs
- OdbcEnvironmentHandle.cs
- Int32Converter.cs
- UIPropertyMetadata.cs
- UnmanagedMemoryStream.cs
- ObjectTag.cs
- ControlEvent.cs
- PanningMessageFilter.cs
- Popup.cs
- XmlCharacterData.cs
- PersonalizationProviderCollection.cs
- CheckBoxField.cs
- EntityDataSourceContainerNameConverter.cs
- ControlBuilderAttribute.cs
- SystemFonts.cs
- CopyNodeSetAction.cs
- DecimalKeyFrameCollection.cs
- InputLanguage.cs
- PropertySet.cs
- StylusOverProperty.cs
- EmissiveMaterial.cs
- DockingAttribute.cs
- TraceSource.cs
- ToolStripGripRenderEventArgs.cs
- RankException.cs
- DesignerCommandAdapter.cs
- WebBrowser.cs
- IdentityHolder.cs
- TextSpan.cs
- BitmapEffectDrawing.cs
- CodeAssignStatement.cs
- XmlSerializerVersionAttribute.cs
- _AcceptOverlappedAsyncResult.cs
- StringWriter.cs
- LogicalExpressionEditor.cs
- XmlTypeMapping.cs
- SmiGettersStream.cs
- ArcSegment.cs
- BuildProviderCollection.cs
- DrawingContextWalker.cs
- UnsafeNativeMethods.cs
- DeflateStream.cs
- SegmentInfo.cs
- DataControlFieldCollection.cs
- ItemCollection.cs
- XPathExpr.cs
- FileDialog.cs
- wmiprovider.cs
- PartialArray.cs
- SoapExtensionTypeElementCollection.cs
- Bold.cs
- GenericPrincipal.cs
- GregorianCalendarHelper.cs
- XmlText.cs
- ProcessActivityTreeOptions.cs
- XmlSerializerOperationBehavior.cs
- CodeMethodInvokeExpression.cs
- BinaryFormatterWriter.cs
- Hash.cs
- ClassicBorderDecorator.cs
- DataSvcMapFileSerializer.cs
- EventDescriptor.cs
- PublisherIdentityPermission.cs
- IQueryable.cs
- SourceChangedEventArgs.cs
- ValidationHelper.cs
- InkCanvasSelectionAdorner.cs
- DataGridViewElement.cs
- DateTimeOffset.cs
- EditingScope.cs
- Token.cs
- XmlFormatExtensionAttribute.cs
- SHA1Managed.cs
- IndicCharClassifier.cs
- WSFederationHttpBindingElement.cs
- Registry.cs