CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
uri_scheme.h
1
2#pragma once
3
4#include <system/object.h>
5#include <system/string.h>
6
7namespace System { namespace Net {
8
14{
16 typedef UriScheme ThisType;
19
21 typedef ::System::BaseTypesInfo<BaseType> ThisTypeBaseTypesInfo;
23 ASPOSECPP_SHARED_RTTI_INFO_DECL();
24
25public:
27 static const String Http;
29 static const String Https;
31 static const String Ws;
33 static const String Wss;
35 static const String SchemeDelimiter;
36};
37
38}} // namespace System::Net
Represent the scheme for URI. Objects of this class should only be allocated using System::MakeObject...
Definition: uri_scheme.h:14
static const String SchemeDelimiter
The string that represents the scheme delimiter.
Definition: uri_scheme.h:35
static const String Https
The HTTPS string representation.
Definition: uri_scheme.h:29
static const String Http
The HTTP string representation.
Definition: uri_scheme.h:27
static const String Ws
The WS string representation.
Definition: uri_scheme.h:31
static const String Wss
The WSS string representation.
Definition: uri_scheme.h:33
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9