Share via


OwinResponse.ContentLength Property

Gets or sets the content returned by the request.

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

Syntax

'Declaration
Public Overridable Property ContentLength As Nullable(Of Long)
    Get 
    Set
'Usage
Dim instance As OwinResponse 
Dim value As Nullable(Of Long)

value = instance.ContentLength

instance.ContentLength = value
public virtual Nullable<long> ContentLength { get; set; }
public:
virtual property Nullable<long long> ContentLength {
    Nullable<long long> get ();
    void set (Nullable<long long> value);
}
abstract ContentLength : Nullable<int64> with get, set 
override ContentLength : Nullable<int64> with get, set
function get ContentLength () : Nullable<long>
function set ContentLength (value : Nullable<long>)

Property Value

Type: System.Nullable<Int64>
The number of bytes returned by the request.

Implements

IOwinResponse.ContentLength

See Also

Reference

OwinResponse Class

Microsoft.Owin Namespace