17 lines
568 B
C#
17 lines
568 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <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
|
||
|
}
|
||
|
}
|