NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HttpUrl Constructor (String, String, Int32, String, String, String)

Initializes HttpUrl with individual pieces of a URL.

[Visual Basic]
Overloads Public Sub New( _
   ByVal protocol As String, _
   ByVal host As String, _
   ByVal port As Integer, _
   ByVal path As String, _
   ByVal queryString As String, _
   ByVal anchor As String _
)
[C#]
public HttpUrl(
   string protocol,
   string host,
   int port,
   string path,
   string queryString,
   string anchor
);
[C++]
public: HttpUrl(
   String* protocol,
   String* host,
   int port,
   String* path,
   String* queryString,
   String* anchor
);
[JScript]
public function HttpUrl(
   protocol : String,
   host : String,
   port : int,
   path : String,
   queryString : String,
   anchor : String
);

Parameters

protocol
A URL protocol (that is: HTTP, HTTPS, FTP).
host
[To be supplied.]
port
[To be supplied.]
path
[To be supplied.]
queryString
[To be supplied.]
anchor
[To be supplied.]

See Also

HttpUrl Class | HttpUrl Members | System.Web Namespace | HttpUrl Constructor Overload List