CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
uri_partial.h
1
3#pragma once
4
5#include <system/enum.h>
6
7namespace System {
8
10enum class UriPartial
11{
13 Scheme = 0,
15 Authority = 1,
17 Path = 2,
19 Query = 3
20};
21
22} // namespace System
23
24template<>
25struct EnumMetaInfo<System::UriPartial>
26{
27 static ASPOSECPP_SHARED_API const std::array<std::pair<System::UriPartial, const char_t*>, 4>& values();
28};
Definition: db_command.h:9
UriPartial
Represents the parts of a URI for the Uri.GetLeftPart method.
Definition: uri_partial.h:11
@ Authority
The scheme and authority components of the URI.
@ Query
The Query data.
@ Scheme
The Scheme data.
@ Path
The LocalPath data.