UriBuilder.ToString Method

Definition

Returns the display string for the specified UriBuilder instance.

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Returns

The string that contains the unescaped display string of the UriBuilder.

Exceptions

The UriBuilder instance has a bad password.

Note: In .NET for Windows Store apps or the Portable Class Library, catch the base class exception, FormatException, instead.

Remarks

The display string contains the Port property value if one of the following conditions is true:

  • The Port property was set.
  • The port was specified when the UriBuilder was constructed using one of the UriBuilder constructors that accept a port number parameter.

In either case, the display string does not contain the Port property value if the port number was set to a value of -1 (for the default port).

Applies to