Interface IReplicationResponse
Abstraction for remote replication response, allows easy integration into any hosting frameworks.
Namespace: Lucene.Net.Replicator.Http.Abstractions
Assembly: Lucene.Net.Replicator.dll
Syntax
public interface IReplicationResponse
Remarks
.NET Specific Abstraction
Properties
Body
The response content.
Declaration
Stream Body { get; }
Property Value
Type | Description |
---|---|
Stream |
Remarks
.NET Specific Abstraction
StatusCode
Gets or sets the http status code of the response.
Declaration
int StatusCode { get; set; }
Property Value
Type | Description |
---|---|
int |
Remarks
.NET Specific Abstraction
Methods
Flush()
Flushes the reponse to the underlying response stream.
Declaration
void Flush()
Remarks
.NET Specific Abstraction