Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyNamespacesAction.cs / 1305376 / CopyNamespacesAction.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 sealed class CopyNamespacesAction : Action { private const int BeginEvent = 2; private const int TextEvent = 3; private const int EndEvent = 4; private const int Advance = 5; private static CopyNamespacesAction s_Action = new CopyNamespacesAction(); internal static CopyNamespacesAction GetAction() { Debug.Assert(s_Action != null); return s_Action; } internal override void Execute(Processor processor, ActionFrame frame) { Debug.Assert(processor != null && frame != null); while (processor.CanContinue) { switch (frame.State) { case Initialized: if (frame.Node.MoveToFirstNamespace(XPathNamespaceScope.ExcludeXml) == false) { frame.Finished(); break; } frame.State = BeginEvent; goto case BeginEvent; case BeginEvent: Debug.Assert(frame.State == BeginEvent); Debug.Assert(frame.Node.NodeType == XPathNodeType.Namespace); if (processor.BeginEvent(XPathNodeType.Namespace, null, frame.Node.LocalName, frame.Node.Value, false) == false) { // This one wasn't output break; } frame.State = EndEvent; continue; case EndEvent: Debug.Assert(frame.State == EndEvent); Debug.Assert(frame.Node.NodeType == XPathNodeType.Namespace); if (processor.EndEvent(XPathNodeType.Namespace) == false) { // This one wasn't output break; } frame.State = Advance; continue; case Advance: Debug.Assert(frame.State == Advance); Debug.Assert(frame.Node.NodeType == XPathNodeType.Namespace); if (frame.Node.MoveToNextNamespace(XPathNamespaceScope.ExcludeXml)) { frame.State = BeginEvent; continue; } else { frame.Node.MoveToParent(); frame.Finished(); break; } } break; }// while } } } // 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
- BamlResourceSerializer.cs
- EventLogPermissionAttribute.cs
- QueryAsyncResult.cs
- MetadataCacheItem.cs
- ScriptReferenceEventArgs.cs
- SamlAdvice.cs
- RadioButton.cs
- SchemaTableOptionalColumn.cs
- DBCommand.cs
- ProfileBuildProvider.cs
- DataConnectionHelper.cs
- ThrowHelper.cs
- OleDbStruct.cs
- Hash.cs
- MostlySingletonList.cs
- FrameSecurityDescriptor.cs
- Char.cs
- SessionStateSection.cs
- DataBoundControl.cs
- XPathSingletonIterator.cs
- HostingEnvironmentException.cs
- BinaryExpressionHelper.cs
- DbMetaDataColumnNames.cs
- ContainerAction.cs
- sortedlist.cs
- WebUtility.cs
- OpenFileDialog.cs
- Publisher.cs
- HybridDictionary.cs
- Color.cs
- ByteConverter.cs
- ResourceManager.cs
- NetPeerTcpBindingCollectionElement.cs
- RegexParser.cs
- GZipDecoder.cs
- DataGridViewCellCollection.cs
- EventLog.cs
- OdbcCommandBuilder.cs
- Matrix3D.cs
- AsyncCodeActivity.cs
- QueryReaderSettings.cs
- CngAlgorithmGroup.cs
- XsltArgumentList.cs
- DecimalConstantAttribute.cs
- PropertyEmitter.cs
- UIHelper.cs
- _TimerThread.cs
- BuildResult.cs
- CatalogPartChrome.cs
- RemotingConfiguration.cs
- PropertyTab.cs
- WindowsGraphicsCacheManager.cs
- DataErrorValidationRule.cs
- QueuePropertyVariants.cs
- DataStorage.cs
- ProviderConnectionPoint.cs
- StorageComplexPropertyMapping.cs
- DbConnectionPool.cs
- RolePrincipal.cs
- SqlConnectionPoolGroupProviderInfo.cs
- PointUtil.cs
- UserUseLicenseDictionaryLoader.cs
- NeutralResourcesLanguageAttribute.cs
- MD5CryptoServiceProvider.cs
- SecurityDocument.cs
- Assert.cs
- Typography.cs
- SimplePropertyEntry.cs
- KnownBoxes.cs
- SafeHandle.cs
- JavaScriptSerializer.cs
- SizeValueSerializer.cs
- GeneralTransform.cs
- HybridDictionary.cs
- PerspectiveCamera.cs
- KeyEventArgs.cs
- ParallelTimeline.cs
- Tokenizer.cs
- ProofTokenCryptoHandle.cs
- AnnotationMap.cs
- GregorianCalendar.cs
- CurrentChangingEventArgs.cs
- PolicyManager.cs
- ParseChildrenAsPropertiesAttribute.cs
- VersionedStreamOwner.cs
- httpserverutility.cs
- ColorMatrix.cs
- LinearKeyFrames.cs
- AddressAccessDeniedException.cs
- JapaneseLunisolarCalendar.cs
- GridViewHeaderRowPresenter.cs
- MultipleViewProviderWrapper.cs
- XamlSerializerUtil.cs
- TerminatorSinks.cs
- ElementUtil.cs
- SessionStateModule.cs
- SafeThreadHandle.cs
- _CommandStream.cs
- RepeatInfo.cs
- CacheRequest.cs