Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / XPath / Internal / NodeFunctions.cs / 1 / NodeFunctions.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace MS.Internal.Xml.XPath {
using System;
using System.Xml;
using System.Xml.XPath;
using System.Diagnostics;
using System.Globalization;
using System.Xml.Xsl;
using FT = MS.Internal.Xml.XPath.Function.FunctionType;
internal sealed class NodeFunctions : ValueQuery {
Query arg = null;
FT funcType;
XsltContext xsltContext;
public NodeFunctions(FT funcType, Query arg) {
this.funcType = funcType;
this.arg = arg;
}
public override void SetXsltContext(XsltContext context){
this.xsltContext = context.Whitespace ? context : null;
if (arg != null) {
arg.SetXsltContext(context);
}
}
private XPathNavigator EvaluateArg(XPathNodeIterator context) {
if (arg == null) {
return context.Current;
}
arg.Evaluate(context);
return arg.Advance();
}
public override object Evaluate(XPathNodeIterator context) {
XPathNavigator argVal;
switch (funcType) {
case FT.FuncPosition:
return (double)context.CurrentPosition;
case FT.FuncLast:
return (double)context.Count;
case FT.FuncNameSpaceUri:
argVal = EvaluateArg(context);
if (argVal != null) {
return argVal.NamespaceURI;
}
break;
case FT.FuncLocalName:
argVal = EvaluateArg(context);
if (argVal != null) {
return argVal.LocalName;
}
break;
case FT.FuncName :
argVal = EvaluateArg(context);
if (argVal != null) {
return argVal.Name;
}
break;
case FT.FuncCount:
arg.Evaluate(context);
int count = 0;
if (xsltContext != null) {
XPathNavigator nav;
while ((nav = arg.Advance()) != null) {
if (nav.NodeType != XPathNodeType.Whitespace || xsltContext.PreserveWhitespace(nav)) {
count++;
}
}
} else {
while (arg.Advance() != null) {
count++;
}
}
return (double) count;
}
return string.Empty;
}
public override XPathResultType StaticType { get { return Function.ReturnTypes[(int)funcType]; } }
public override XPathNodeIterator Clone() {
NodeFunctions method = new NodeFunctions(funcType, Clone(arg));
method.xsltContext = this.xsltContext;
return method;
}
public override void PrintQuery(XmlWriter w) {
w.WriteStartElement(this.GetType().Name);
w.WriteAttributeString("name", funcType.ToString());
if (arg != null) {
arg.PrintQuery(w);
}
w.WriteEndElement();
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SqlUserDefinedAggregateAttribute.cs
- Int16Storage.cs
- Style.cs
- FilterQuery.cs
- RadioButton.cs
- SafeNativeMethods.cs
- relpropertyhelper.cs
- DictionaryItemsCollection.cs
- UserControlBuildProvider.cs
- DependencyObjectPropertyDescriptor.cs
- TabItemAutomationPeer.cs
- WebSysDisplayNameAttribute.cs
- RegionIterator.cs
- safex509handles.cs
- GridPatternIdentifiers.cs
- FormsAuthenticationUser.cs
- Attributes.cs
- EditorPartCollection.cs
- PeerName.cs
- ContentPlaceHolder.cs
- PersonalizableTypeEntry.cs
- TraversalRequest.cs
- Int64KeyFrameCollection.cs
- DocumentApplication.cs
- PeerCredentialElement.cs
- BaseConfigurationRecord.cs
- UnsafeCollabNativeMethods.cs
- FixedSOMLineRanges.cs
- ToolbarAUtomationPeer.cs
- WebPartTracker.cs
- WebPartMenuStyle.cs
- SID.cs
- Emitter.cs
- ThemeConfigurationDialog.cs
- UpdateProgress.cs
- QuadraticBezierSegment.cs
- DynamicActivityTypeDescriptor.cs
- GlyphRunDrawing.cs
- BitmapEffectState.cs
- SQLGuidStorage.cs
- NavigationProperty.cs
- TemplateColumn.cs
- WindowsFont.cs
- PersonalizableAttribute.cs
- DBConnectionString.cs
- HtmlInputImage.cs
- DataGridViewAutoSizeModeEventArgs.cs
- UnsafePeerToPeerMethods.cs
- LinqExpressionNormalizer.cs
- ImageAnimator.cs
- CultureSpecificStringDictionary.cs
- ContainerControl.cs
- EntityUtil.cs
- RuleAction.cs
- ImageCollectionEditor.cs
- EntityDataSourceContextCreatingEventArgs.cs
- ArithmeticLiteral.cs
- CollectionView.cs
- HttpWebRequestElement.cs
- APCustomTypeDescriptor.cs
- AttachInfo.cs
- XmlDocumentFragment.cs
- PriorityBindingExpression.cs
- CapabilitiesRule.cs
- FilterElement.cs
- LinkedResource.cs
- Cursors.cs
- ReadOnlyTernaryTree.cs
- FlowDocumentPage.cs
- TableItemPattern.cs
- CapacityStreamGeometryContext.cs
- CheckedListBox.cs
- DiscoveryMessageSequenceGenerator.cs
- Environment.cs
- OleDbParameterCollection.cs
- BoolExpr.cs
- NavigationPropertyEmitter.cs
- DropShadowEffect.cs
- DataView.cs
- MSAANativeProvider.cs
- SoapIncludeAttribute.cs
- ScriptRef.cs
- Simplifier.cs
- SQLChars.cs
- Grammar.cs
- StateManagedCollection.cs
- CompositeCollection.cs
- MailDefinition.cs
- IImplicitResourceProvider.cs
- WithStatement.cs
- CodeDelegateCreateExpression.cs
- TimeIntervalCollection.cs
- ObjectStateFormatter.cs
- XPathException.cs
- X500Name.cs
- RoutedEventArgs.cs
- SymbolDocumentInfo.cs
- ToolStripSplitButton.cs
- SystemIPv4InterfaceProperties.cs
- RtfNavigator.cs