Code:
/ DotNET / DotNET / 8.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
- FormClosedEvent.cs
- CreateUserWizardStep.cs
- CatalogPartChrome.cs
- AuthenticationManager.cs
- HelloMessageApril2005.cs
- HashAlgorithm.cs
- PassportPrincipal.cs
- ShaderEffect.cs
- FilteredDataSetHelper.cs
- CalendarDayButton.cs
- XmlImplementation.cs
- File.cs
- Task.cs
- PageHandlerFactory.cs
- HGlobalSafeHandle.cs
- LogPolicy.cs
- UrlPath.cs
- XmlArrayItemAttributes.cs
- ColorConvertedBitmap.cs
- GorillaCodec.cs
- ValuePattern.cs
- SwitchElementsCollection.cs
- SoapProtocolImporter.cs
- RightsManagementEncryptedStream.cs
- CodePageUtils.cs
- _RequestCacheProtocol.cs
- DocobjHost.cs
- DataControlButton.cs
- TypeDescriptionProviderAttribute.cs
- TrackingDataItem.cs
- SByteConverter.cs
- ClientConfigurationSystem.cs
- DeclarativeCatalogPart.cs
- InkCanvasInnerCanvas.cs
- CustomWebEventKey.cs
- SecurityContext.cs
- ArrayElementGridEntry.cs
- IListConverters.cs
- HitTestWithPointDrawingContextWalker.cs
- CodeSubDirectoriesCollection.cs
- TitleStyle.cs
- SingleObjectCollection.cs
- QilInvoke.cs
- AuthenticateEventArgs.cs
- CompositionTarget.cs
- InputLanguageEventArgs.cs
- ClientSettingsStore.cs
- TabControlCancelEvent.cs
- dtdvalidator.cs
- RoutingBehavior.cs
- HiddenFieldPageStatePersister.cs
- FontDriver.cs
- DocumentViewerBaseAutomationPeer.cs
- PngBitmapDecoder.cs
- RegexMatch.cs
- ApplicationContext.cs
- DesignerWithHeader.cs
- DesignerObjectListAdapter.cs
- ConfigurationElementProperty.cs
- OneOfElement.cs
- HashMembershipCondition.cs
- PolicyManager.cs
- BindingUtils.cs
- OrderingExpression.cs
- TreeNodeBindingDepthConverter.cs
- ContentElement.cs
- DictionaryChange.cs
- HtmlMeta.cs
- ParameterModifier.cs
- ClientOptions.cs
- CodeIndexerExpression.cs
- EntitySqlQueryCacheEntry.cs
- DataControlReferenceCollection.cs
- PlatformNotSupportedException.cs
- dataobject.cs
- SafeThemeHandle.cs
- filewebrequest.cs
- MetafileHeaderEmf.cs
- UrlAuthFailedErrorFormatter.cs
- XhtmlBasicPanelAdapter.cs
- DetailsViewCommandEventArgs.cs
- PenCursorManager.cs
- ItemCollection.cs
- InfoCardRSACryptoProvider.cs
- Comparer.cs
- ViewGenResults.cs
- SmtpDigestAuthenticationModule.cs
- PixelFormatConverter.cs
- AttachedPropertyDescriptor.cs
- _KerberosClient.cs
- StylusShape.cs
- ServiceThrottlingElement.cs
- WorkflowCompensationBehavior.cs
- PageContentCollection.cs
- IntSecurity.cs
- ScriptRef.cs
- DataFormat.cs
- StorageMappingItemCollection.cs
- WrapperEqualityComparer.cs
- GraphicsContext.cs