C# Класс Microsoft.Alm.Authentication.TargetUri

Represents a potentially proxied Uri.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
ActualUri System.Uri
ProxyUri System.Uri
QueryUri System.Uri

Открытые методы

Метод Описание
IsBaseOf ( TargetUri targetUri ) : bool

Determines whether the QueryUri is a base of the specified targetUri.

IsBaseOf ( Uri uri ) : bool

Determines whether the QueryUri is a base of the specified Uri.

TargetUri ( Uri target ) : System
TargetUri ( Uri actualUri, Uri queryUri, Uri proxyUri ) : System
TargetUri ( string targetUrl ) : System
TargetUri ( string actualUrl, string queryUrl, string proxyUrl ) : System
ToString ( ) : string

Gets a canonical string representation for the QueryUri.

Описание методов

IsBaseOf() публичный Метод

Determines whether the QueryUri is a base of the specified targetUri.
public IsBaseOf ( TargetUri targetUri ) : bool
targetUri TargetUri The to test.
Результат bool

IsBaseOf() публичный Метод

Determines whether the QueryUri is a base of the specified Uri.
public IsBaseOf ( Uri uri ) : bool
uri System.Uri The to test.
Результат bool

TargetUri() публичный Метод

public TargetUri ( Uri target ) : System
target System.Uri
Результат System

TargetUri() публичный Метод

public TargetUri ( Uri actualUri, Uri queryUri, Uri proxyUri ) : System
actualUri System.Uri
queryUri System.Uri
proxyUri System.Uri
Результат System

TargetUri() публичный Метод

public TargetUri ( string targetUrl ) : System
targetUrl string
Результат System

TargetUri() публичный Метод

public TargetUri ( string actualUrl, string queryUrl, string proxyUrl ) : System
actualUrl string
queryUrl string
proxyUrl string
Результат System

ToString() публичный Метод

Gets a canonical string representation for the QueryUri.
public ToString ( ) : string
Результат string

Описание свойств

ActualUri публичное свойство

The actual Uri of the target.
public Uri,System ActualUri
Результат System.Uri

ProxyUri публичное свойство

The proxy Uri of the target if it exists; otherwise .
public Uri,System ProxyUri
Результат System.Uri

QueryUri публичное свойство

Gets the Uri that should be used for all queries.
public Uri,System QueryUri
Результат System.Uri