Address.Set Method
Sets the Address with the specified key and value.
Namespace: Microsoft.Owin.BuilderProperties
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Syntax
'Declaration
Public Function Set ( _
key As String, _
value As Object _
) As Address
'Usage
Dim instance As Address
Dim key As String
Dim value As Object
Dim returnValue As Address
returnValue = instance.Set(key, value)
public Address Set(
string key,
Object value
)
public:
Address Set(
String^ key,
Object^ value
)
member Set :
key:string *
value:Object -> Address
public function Set(
key : String,
value : Object
) : Address
Parameters
- key
Type: System.String
The key.
- value
Type: System.Object
The value.
Return Value
Type: Microsoft.Owin.BuilderProperties.Address
The Address with the specified key and value.