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
- ColorConvertedBitmap.cs
- DataGridViewColumnConverter.cs
- BitmapSourceSafeMILHandle.cs
- CssClassPropertyAttribute.cs
- DynamicDataExtensions.cs
- DeploymentExceptionMapper.cs
- PeerResolver.cs
- SourceFileBuildProvider.cs
- LayoutEngine.cs
- TextBoxBase.cs
- GeometryGroup.cs
- COMException.cs
- FileFormatException.cs
- DbParameterCollectionHelper.cs
- DataGridViewCellMouseEventArgs.cs
- TdsValueSetter.cs
- DesignTimeVisibleAttribute.cs
- RouteItem.cs
- ScriptMethodAttribute.cs
- ImageDesigner.cs
- GrammarBuilderWildcard.cs
- CodeDomLoader.cs
- SafeNativeMethodsCLR.cs
- SqlRemoveConstantOrderBy.cs
- AutoScrollHelper.cs
- PenContext.cs
- ColorKeyFrameCollection.cs
- OperationPerformanceCounters.cs
- SystemIPv6InterfaceProperties.cs
- FunctionQuery.cs
- DataSetMappper.cs
- TrackPointCollection.cs
- CompressEmulationStream.cs
- ButtonChrome.cs
- ExpressionBuilderContext.cs
- ErrorHandler.cs
- WindowInteractionStateTracker.cs
- OneToOneMappingSerializer.cs
- Int32.cs
- SafePEFileHandle.cs
- SelectionUIService.cs
- ExpressionBindingCollection.cs
- HostingMessageProperty.cs
- XsltLoader.cs
- ExtendedProtectionPolicyElement.cs
- RecordConverter.cs
- DoubleAnimationBase.cs
- PresentationSource.cs
- TempEnvironment.cs
- DeleteMemberBinder.cs
- OdbcHandle.cs
- FacetValueContainer.cs
- RoleGroup.cs
- BufferedGraphicsManager.cs
- KnownTypesProvider.cs
- PageBuildProvider.cs
- NamespaceQuery.cs
- RepeaterCommandEventArgs.cs
- MessageDesigner.cs
- DataGridTablesFactory.cs
- ContextMenu.cs
- SamlConditions.cs
- SerializationStore.cs
- ListView.cs
- ProcessRequestArgs.cs
- COM2Properties.cs
- NetStream.cs
- Scene3D.cs
- HitTestResult.cs
- ArrayTypeMismatchException.cs
- DataControlReferenceCollection.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- GridViewPageEventArgs.cs
- SizeConverter.cs
- CharUnicodeInfo.cs
- ContractNamespaceAttribute.cs
- CardSpacePolicyElement.cs
- ResourceContainer.cs
- CharAnimationUsingKeyFrames.cs
- RijndaelManagedTransform.cs
- WebPartActionVerb.cs
- ComplexPropertyEntry.cs
- SelectionRange.cs
- DWriteFactory.cs
- CachedFontFace.cs
- TimeSpanValidatorAttribute.cs
- CallSiteOps.cs
- WebBrowserPermission.cs
- WebReferenceOptions.cs
- WebPartZone.cs
- DashStyle.cs
- DetailsViewUpdateEventArgs.cs
- AuthenticateEventArgs.cs
- ImageListDesigner.cs
- ReachFixedPageSerializerAsync.cs
- SqlDataSourceQueryConverter.cs
- WebPartZone.cs
- Lasso.cs
- MDIControlStrip.cs
- PersistChildrenAttribute.cs