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 | |
---|---|---|
![]() |
Address(IDictionary<String, Object>) | Initializes a new instance. |
![]() |
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
- dictionary
Type: System.Collections.Generic.IDictionary<String, Object>
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
scheme
Type: System.StringThe scheme.
host
Type: System.StringThe host.
port
Type: System.StringThe port.
path
Type: System.StringThe path.
Return to top