Package system
Class Uri
-
- All Implemented Interfaces:
IJCOBridgeReflected
,ISerializable
public class Uri extends NetObject implements ISerializable
The base .NET class managing System.Uri, System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Uri
Powered by JCOBridge: more info at https://www.jcobridge.com
- Version:
- 1.14.3.0
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static String
assemblyFullName
Fully assembly qualified name: System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic String
assemblyShortName
Assembly name: System.Private.Uristatic String
className
Qualified class name: System.Uristatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description Uri()
Uri(Object instance)
Internal constructor.Uri(String uriString)
Uri(String uriString, boolean dontEscape)
Uri(String uriString, UriCreationOptions creationOptions)
Uri(String uriString, UriKind uriKind)
Uri(Uri baseUri, String relativeUri)
Uri(Uri baseUri, String relativeUri, boolean dontEscape)
Uri(Uri baseUri, Uri relativeUri)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Uri
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoUri
, a cast assert is made to check if types are compatible.static UriHostNameType
CheckHostName(String name)
static boolean
CheckSchemeName(String schemeName)
static int
Compare(Uri uri1, Uri uri2, UriComponents partsToCompare, UriFormat compareFormat, StringComparison comparisonType)
static String
EscapeDataString(String stringToEscape)
static String
EscapeUriString(String stringToEscape)
static int
FromHex(char digit)
String
getAbsolutePath()
String
getAbsoluteUri()
String
getAuthority()
String
GetComponents(UriComponents components, UriFormat format)
String
getDnsSafeHost()
String
getFragment()
String
getHost()
UriHostNameType
getHostNameType()
String
getIdnHost()
boolean
getIsAbsoluteUri()
boolean
getIsDefaultPort()
boolean
getIsFile()
boolean
getIsLoopback()
boolean
getIsUnc()
String
getJCOAssemblyName()
Returns the reflected Assembly nameString
getJCOClassName()
Returns the reflected Class nameObject
getJCOInstance()
Returns the instantiated classString
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeString
GetLeftPart(UriPartial part)
String
getLocalPath()
void
GetObjectData(SerializationInfo info, StreamingContext context)
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface.String
getOriginalString()
String
getPathAndQuery()
int
getPort()
String
getQuery()
String
getScheme()
String[]
getSegments()
boolean
getUserEscaped()
String
getUserInfo()
static String
HexEscape(char character)
static char
HexUnescape(String pattern, JCORefOut<AtomicInteger> index)
boolean
IsBaseOf(Uri uri)
static boolean
IsHexDigit(char character)
static boolean
IsHexEncoding(String pattern, int index)
boolean
IsWellFormedOriginalString()
static boolean
IsWellFormedUriString(String uriString, UriKind uriKind)
String
MakeRelative(Uri toUri)
Uri
MakeRelativeUri(Uri uri)
void
setJCOInstance(JCObject instance)
static boolean
TryCreate(String uriString, JCORefOut<UriCreationOptions> creationOptions, JCORefOut<Uri> result)
static boolean
TryCreate(String uriString, UriKind uriKind, JCORefOut<Uri> result)
static boolean
TryCreate(Uri baseUri, String relativeUri, JCORefOut<Uri> result)
static boolean
TryCreate(Uri baseUri, Uri relativeUri, JCORefOut<Uri> result)
static String
UnescapeDataString(String stringToUnescape)
-
Methods inherited from class org.mases.jcobridge.netreflection.NetObject
Equals, Equals, GetHashCode, GetType, hashCode, toObjectFromArray, toObjectFromArray, toString, ToString, translateException
-
-
-
-
Field Detail
-
assemblyFullName
public static final String assemblyFullName
Fully assembly qualified name: System.Private.Uri, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final String assemblyShortName
Assembly name: System.Private.Uri- See Also:
- Constant Field Values
-
className
public static final String className
Qualified class name: System.Uri- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Uri
public Uri(Object instance) throws Throwable
Internal constructor. Use with caution- Throws:
Throwable
-
Uri
public Uri(String uriString, boolean dontEscape) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Uri
public Uri(String uriString, UriCreationOptions creationOptions) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Uri
public Uri(String uriString, UriKind uriKind) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Uri
public Uri(String uriString) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException
-
Uri
public Uri(Uri baseUri, String relativeUri, boolean dontEscape) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, UriFormatException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
UriFormatException
-
Uri
public Uri(Uri baseUri, String relativeUri) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, UriFormatException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
OutOfMemoryException
UriFormatException
-
Uri
public Uri(Uri baseUri, Uri relativeUri) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, UriFormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
UriFormatException
OutOfMemoryException
-
-
Method Detail
-
getJCOAssemblyName
public String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOAssemblyName
in interfaceISerializable
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOClassName
in interfaceISerializable
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Specified by:
getJCOObjectName
in interfaceISerializable
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Specified by:
getJCOInstance
in interfaceISerializable
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Specified by:
getJCOType
in interfaceISerializable
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Uri cast(IJCOBridgeReflected from) throws Throwable
Try to cast theIJCOBridgeReflected
instance intoUri
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Uri
instance- Throws:
Throwable
- in case of error during cast operation
-
CheckSchemeName
public static boolean CheckSchemeName(String schemeName) throws Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
IsBaseOf
public boolean IsBaseOf(Uri uri) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, UriFormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
UriFormatException
OutOfMemoryException
-
IsHexEncoding
public static boolean IsHexEncoding(String pattern, int index) throws Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
IsWellFormedOriginalString
public boolean IsWellFormedOriginalString() throws Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, NotSupportedException, IndexOutOfRangeException, ArrayTypeMismatchException
-
IsWellFormedUriString
public static boolean IsWellFormedUriString(String uriString, UriKind uriKind) throws Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OutOfMemoryException
-
TryCreate
public static boolean TryCreate(String uriString, JCORefOut<UriCreationOptions> creationOptions, JCORefOut<Uri> result) throws Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException, NotSupportedException
-
TryCreate
public static boolean TryCreate(String uriString, UriKind uriKind, JCORefOut<Uri> result) throws Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, ArrayTypeMismatchException, OutOfMemoryException, NotSupportedException
-
TryCreate
public static boolean TryCreate(Uri baseUri, String relativeUri, JCORefOut<Uri> result) throws Throwable, ArgumentNullException, ArgumentException, CultureNotFoundException, ObjectDisposedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, OutOfMemoryException, UriFormatException
-
TryCreate
public static boolean TryCreate(Uri baseUri, Uri relativeUri, JCORefOut<Uri> result) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, ArrayTypeMismatchException
-
HexUnescape
public static char HexUnescape(String pattern, JCORefOut<AtomicInteger> index) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
Compare
public static int Compare(Uri uri1, Uri uri2, UriComponents partsToCompare, UriFormat compareFormat, StringComparison comparisonType) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, CultureNotFoundException, PlatformNotSupportedException, InvalidOperationException, OutOfMemoryException, ExternalException, ArgumentOutOfRangeException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, UriFormatException
- Throws:
Throwable
NotSupportedException
ArgumentException
ArgumentNullException
CultureNotFoundException
PlatformNotSupportedException
InvalidOperationException
OutOfMemoryException
ExternalException
ArgumentOutOfRangeException
IndexOutOfRangeException
RankException
ArrayTypeMismatchException
UriFormatException
-
FromHex
public static int FromHex(char digit) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, FormatException, IndexOutOfRangeException
-
EscapeDataString
public static String EscapeDataString(String stringToEscape) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException
-
EscapeUriString
public static String EscapeUriString(String stringToEscape) throws Throwable, ArgumentException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException
-
GetComponents
public String GetComponents(UriComponents components, UriFormat format) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
GetLeftPart
public String GetLeftPart(UriPartial part) throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
HexEscape
public static String HexEscape(char character) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException
-
MakeRelative
public String MakeRelative(Uri toUri) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, UriFormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
UriFormatException
OutOfMemoryException
-
UnescapeDataString
public static String UnescapeDataString(String stringToUnescape) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, UriFormatException
-
MakeRelativeUri
public Uri MakeRelativeUri(Uri uri) throws Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, UriFormatException, OutOfMemoryException
- Throws:
Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
IndexOutOfRangeException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
UriFormatException
OutOfMemoryException
-
CheckHostName
public static UriHostNameType CheckHostName(String name) throws Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentNullException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException
-
GetObjectData
@Deprecated public void GetObjectData(SerializationInfo info, StreamingContext context) throws Throwable
Deprecated.Not for public use because the method is implemented in .NET with an explicit interface. Use the static ToISerializable method available in ISerializable to obtain an object with an invocable method- Specified by:
GetObjectData
in interfaceISerializable
- Throws:
Throwable
-
getIsDefaultPort
public boolean getIsDefaultPort() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
getIsFile
public boolean getIsFile() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getIsLoopback
public boolean getIsLoopback() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
getIsUnc
public boolean getIsUnc() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getPort
public int getPort() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
getAbsolutePath
public String getAbsolutePath() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getAbsoluteUri
public String getAbsoluteUri() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getAuthority
public String getAuthority() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getDnsSafeHost
public String getDnsSafeHost() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
getFragment
public String getFragment() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getHost
public String getHost() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getIdnHost
public String getIdnHost() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
getLocalPath
public String getLocalPath() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException, OutOfMemoryException, ArrayTypeMismatchException
-
getPathAndQuery
public String getPathAndQuery() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getQuery
public String getQuery() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getScheme
public String getScheme() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException
-
getUserInfo
public String getUserInfo() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException
-
getSegments
public String[] getSegments() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, IndexOutOfRangeException, UriFormatException, RankException, ArrayTypeMismatchException
-
getHostNameType
public UriHostNameType getHostNameType() throws Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, PlatformNotSupportedException, UriFormatException, OutOfMemoryException, IndexOutOfRangeException, FormatException
-
-