17 lines
568 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="XPathNamespaceScope.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">sdub</owner>
//------------------------------------------------------------------------------
namespace System.Xml.XPath {
using System;
public enum XPathNamespaceScope {
All,
ExcludeXml,
Local
}
}