16 lines
364 B
C#
16 lines
364 B
C#
|
//----------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//----------------------------------------------------------------
|
||
|
|
||
|
namespace System
|
||
|
{
|
||
|
enum UriTemplateTrieIntraNodeLocation
|
||
|
{
|
||
|
BeforeLiteral,
|
||
|
AfterLiteral,
|
||
|
AfterCompound,
|
||
|
AfterVariable,
|
||
|
}
|
||
|
|
||
|
}
|