Share via


Address Constructor

 

Initializes a new instance of the Address class.

Namespace:   Microsoft.Owin.BuilderProperties
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Overload List

Name Description
System_CAPS_pubmethod Address(IDictionary<String, Object>)

Initializes a new instance.

System_CAPS_pubmethod Address(String, String, String, String)

Initializes a new Address with the given parts.

See Also

Address Structure
Microsoft.Owin.BuilderProperties Namespace

Return to top

Address Constructor (IDictionary<String, Object>)

Initializes a new instance.

Syntax

public Address(
    IDictionary<string, object> dictionary
)
public:
Address(
    IDictionary<String^, Object^>^ dictionary
)
new : 
        dictionary:IDictionary<string, Object> -> Address
Public Sub New (
    dictionary As IDictionary(Of String, Object)
)

Parameters

Return to top

Address Constructor (String, String, String, String)

Initializes a new Address with the given parts.

Syntax

public Address(
    string scheme,
    string host,
    string port,
    string path
)
public:
Address(
    String^ scheme,
    String^ host,
    String^ port,
    String^ path
)
new : 
        scheme:string *
        host:string *
        port:string *
        path:string -> Address
Public Sub New (
    scheme As String,
    host As String,
    port As String,
    path As String
)

Parameters

Return to top