ByteArrayContent.TryComputeLength Method

Determines whether a byte array has a valid length in bytes.

Namespace:  System.Net.Http
Assembly:  System.Net.Http (in System.Net.Http.dll)

Syntax

'Declaration
Protected Friend Overrides Function TryComputeLength ( _
    <OutAttribute> ByRef length As Long _
) As Boolean
'Usage
Dim length As Long 
Dim returnValue As Boolean 

returnValue = Me.TryComputeLength(length)
protected internal override bool TryComputeLength(
    out long length
)
protected public:
virtual bool TryComputeLength(
    [OutAttribute] long long% length
) override
abstract TryComputeLength : 
        length:int64 byref -> bool  
override TryComputeLength : 
        length:int64 byref -> bool
override function TryComputeLength(
    length : long
) : boolean

Parameters

  • length
    Type: System.Int64
    The length in bytes of the byte array.

Return Value

Type: System.Boolean
Returns Boolean.true if length is a valid length; otherwise, false.

See Also

Reference

ByteArrayContent Class

System.Net.Http Namespace