Org.Apache.Http.IHttpEntity.IsStreaming Property
Tells whether this entity depends on an underlying stream.

Syntax

[get: Android.Runtime.Register("isStreaming", "()Z", "GetIsStreamingHandler:Org.Apache.Http.IHttpEntityInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool IsStreaming { get; }

Value

Documentation for this section has not yet been entered.

Remarks

Tells whether this entity depends on an underlying stream. Streamed entities should return true until the content has been consumed, false afterwards. Self-contained entities should return false. Wrapping entities should delegate this call to the wrapped entity.

The content of a streamed entity is consumed when the stream returned by IHttpEntity.Content has been read to EOF, or after IHttpEntity.ConsumeContent has been called. If a streamed entity can not detect whether the stream has been read to EOF, it should return true until IHttpEntity.ConsumeContent is called.

[Android Documentation]

Requirements

Namespace: Org.Apache.Http
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1