FtpWebRequest.RequestUri Property

Definition

Gets the URI requested by this instance.

public:
 virtual property Uri ^ RequestUri { Uri ^ get(); };
public override Uri RequestUri { get; }
member this.RequestUri : Uri
Public Overrides ReadOnly Property RequestUri As Uri

Property Value

Uri

A Uri instance that identifies a resource that is accessed using the File Transfer Protocol.

Examples

The following code example displays this property value.

Console::WriteLine( "User {0} {1}", request->Credentials->GetCredential( request->RequestUri, "basic" )->UserName, request->RequestUri );
Console.WriteLine("User {0} {1}",
    request.Credentials.GetCredential(request.RequestUri,"basic").UserName,
    request.RequestUri
);

Remarks

The value of the RequestUri property is the URI specified when the Create method was called to obtain this instance.

Applies to

See also