C# Class Microsoft.Alm.Authentication.TargetUri

Represents a potentially proxied Uri.
Afficher le fichier Open project: Microsoft/Git-Credential-Manager-for-Windows Class Usage Examples

Méthodes publiques

Свойство Type Description
ActualUri System.Uri
ProxyUri System.Uri
QueryUri System.Uri

Méthodes publiques

Méthode Description
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.

Method Details

IsBaseOf() public méthode

Determines whether the QueryUri is a base of the specified targetUri.
public IsBaseOf ( TargetUri targetUri ) : bool
targetUri TargetUri The to test.
Résultat bool

IsBaseOf() public méthode

Determines whether the QueryUri is a base of the specified Uri.
public IsBaseOf ( Uri uri ) : bool
uri System.Uri The to test.
Résultat bool

TargetUri() public méthode

public TargetUri ( Uri target ) : System
target System.Uri
Résultat System

TargetUri() public méthode

public TargetUri ( Uri actualUri, Uri queryUri, Uri proxyUri ) : System
actualUri System.Uri
queryUri System.Uri
proxyUri System.Uri
Résultat System

TargetUri() public méthode

public TargetUri ( string targetUrl ) : System
targetUrl string
Résultat System

TargetUri() public méthode

public TargetUri ( string actualUrl, string queryUrl, string proxyUrl ) : System
actualUrl string
queryUrl string
proxyUrl string
Résultat System

ToString() public méthode

Gets a canonical string representation for the QueryUri.
public ToString ( ) : string
Résultat string

Property Details

ActualUri public_oe property

The actual Uri of the target.
public Uri,System ActualUri
Résultat System.Uri

ProxyUri public_oe property

The proxy Uri of the target if it exists; otherwise .
public Uri,System ProxyUri
Résultat System.Uri

QueryUri public_oe property

Gets the Uri that should be used for all queries.
public Uri,System QueryUri
Résultat System.Uri