BaseView.Write Method
Namespace: Microsoft.Owin.Diagnostics.Views
Assembly: Microsoft.Owin.Diagnostics (in Microsoft.Owin.Diagnostics.dll)
Overload List
Name | Description | |
---|---|---|
![]() |
Write(Object) | Convert to string and html encode |
![]() |
Write(String) | Html encode and write |
See Also
BaseView Class
Microsoft.Owin.Diagnostics.Views Namespace
Return to top
BaseView.Write Method (Object)
Convert to string and html encode
Syntax
protected void Write(
object value
)
protected:
void Write(
Object^ value
)
member Write :
value:Object -> unit
Protected Sub Write (
value As Object
)
Parameters
- value
Type: System.Object
Return to top
BaseView.Write Method (String)
Html encode and write
Syntax
protected void Write(
string value
)
protected:
void Write(
String^ value
)
member Write :
value:string -> unit
Protected Sub Write (
value As String
)
Parameters
- value
Type: System.String
Return to top