PeachPDF

PeachPDF.Network.RUri

RUri Constructors

Overloads  
RUri(RUri, RUri) Resolves uri against baseUri, the same way a relative href/src/url() reference is resolved against a document’s base URL.
RUri(RUri, string) Resolves uri against baseUri, the same way a relative href/src/url() reference is resolved against a document’s base URL.
RUri(string) Parses uriString as either an absolute or relative URI.
RUri(string, UriKind) Parses uriString as the given uriKind.
RUri(Uri) Wraps an existing System.Uri instance.

RUri(RUri, RUri) Constructor

Resolves uri against baseUri, the same way a relative href/src/url() reference is resolved against a document’s base URL.

public RUri(PeachPDF.Network.RUri baseUri, PeachPDF.Network.RUri uri);

Parameters

baseUri RUri

The base URI to resolve against.

uri RUri

The (typically relative) URI to resolve.

RUri(RUri, string) Constructor

Resolves uri against baseUri, the same way a relative href/src/url() reference is resolved against a document’s base URL.

public RUri(PeachPDF.Network.RUri baseUri, string uri);

Parameters

baseUri RUri

The base URI to resolve against.

uri System.String

The (typically relative) URI string to resolve.

RUri(string) Constructor

Parses uriString as either an absolute or relative URI.

public RUri(string uriString);

Parameters

uriString System.String

The URI string to parse.

RUri(string, UriKind) Constructor

Parses uriString as the given uriKind.

public RUri(string uriString, System.UriKind uriKind);

Parameters

uriString System.String

The URI string to parse.

uriKind System.UriKind

Whether the string is known to be absolute, relative, or either.

RUri(Uri) Constructor

Wraps an existing System.Uri instance.

public RUri(System.Uri uri);

Parameters

uri System.Uri

The URI to wrap.