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
| Improve this Doc View SourceBody
The response content.
Declaration
Stream Body { get; }
Property Value
Type | Description |
---|---|
System.IO.Stream |
StatusCode
Gets or sets the http status code of the response.
Declaration
int StatusCode { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceFlush()
Flushes the reponse to the underlying response stream.
Declaration
void Flush()