Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CopyNamespacesAction.cs / 1 / 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.
//------------------------------------------------------------------------------
//
// 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
- DefaultValueConverter.cs
- RectValueSerializer.cs
- DefaultTraceListener.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- DayRenderEvent.cs
- NullableDecimalMinMaxAggregationOperator.cs
- ServiceCredentialsElement.cs
- InstalledFontCollection.cs
- PathGeometry.cs
- NetNamedPipeBinding.cs
- EntityDataSourceViewSchema.cs
- SmiEventStream.cs
- TemplateBuilder.cs
- SqlConnectionFactory.cs
- BitmapDecoder.cs
- WebControlsSection.cs
- CompositionTarget.cs
- RemotingConfiguration.cs
- PanelDesigner.cs
- Types.cs
- NameTable.cs
- InitializerFacet.cs
- IRCollection.cs
- StatusBarAutomationPeer.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- DateTimeOffsetConverter.cs
- SiteIdentityPermission.cs
- RangeBaseAutomationPeer.cs
- IWorkflowDebuggerService.cs
- XmlQueryRuntime.cs
- SettingsPropertyNotFoundException.cs
- DefaultPropertiesToSend.cs
- Int32Converter.cs
- CustomPeerResolverService.cs
- KerberosReceiverSecurityToken.cs
- FileAuthorizationModule.cs
- XmlElementAttribute.cs
- AtomServiceDocumentSerializer.cs
- TypeSchema.cs
- recordstatefactory.cs
- AttributeParameterInfo.cs
- StsCommunicationException.cs
- HandleExceptionArgs.cs
- ImmutablePropertyDescriptorGridEntry.cs
- SessionStateItemCollection.cs
- EnumerableCollectionView.cs
- TablePattern.cs
- XPathDocumentBuilder.cs
- UncommonField.cs
- COM2IProvidePropertyBuilderHandler.cs
- BasicExpressionVisitor.cs
- SecurityTokenContainer.cs
- PostBackTrigger.cs
- SectionInformation.cs
- AttachedPropertyBrowsableAttribute.cs
- LinearGradientBrush.cs
- ListBoxChrome.cs
- SqlCacheDependency.cs
- ManagementOperationWatcher.cs
- PersonalizationProviderHelper.cs
- StatementContext.cs
- LexicalChunk.cs
- ValueProviderWrapper.cs
- XmlTextAttribute.cs
- ImplicitInputBrush.cs
- StandardToolWindows.cs
- mediaeventargs.cs
- FileUtil.cs
- DataGridCheckBoxColumn.cs
- SqlError.cs
- GeneralTransform3DGroup.cs
- RangeContentEnumerator.cs
- CompilerWrapper.cs
- SR.cs
- SignatureDescription.cs
- ToolStripSplitStackLayout.cs
- DesignerCommandSet.cs
- SafeFileHandle.cs
- DoubleUtil.cs
- DependencyPropertyValueSerializer.cs
- PKCS1MaskGenerationMethod.cs
- Transform3DCollection.cs
- TagMapCollection.cs
- CharStorage.cs
- StateMachineExecutionState.cs
- ThreadSafeList.cs
- CharAnimationBase.cs
- AuthorizationRuleCollection.cs
- IIS7UserPrincipal.cs
- HashHelper.cs
- WsdlParser.cs
- DesignOnlyAttribute.cs
- CompositeControl.cs
- TranslateTransform3D.cs
- RootNamespaceAttribute.cs
- ConstructorBuilder.cs
- EditorPart.cs
- StrongNameMembershipCondition.cs
- DecimalConverter.cs
- AsyncResult.cs