Interface IReplicationRequest
Abstraction for remote replication requests, allows easy integration into any hosting frameworks.
Namespace: Lucene.Net.Replicator.Http.Abstractions
Assembly: Lucene.Net.Replicator.dll
Syntax
public interface IReplicationRequest
  Remarks
.NET Specific Abstraction
Properties
| Improve this Doc View SourcePath
Provides the requested path which mapps to a replication operation.
Declaration
string Path { get; }
  Property Value
| Type | Description | 
|---|---|
| System.String | 
Methods
| Improve this Doc View SourceQueryParam(String)
Returns the requested query parameter or null if not present.
Declaration
string QueryParam(string name)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | the name of the requested parameter  | 
      
Returns
| Type | Description | 
|---|---|
| System.String | the value of the requested parameter or null if not present  | 
      
Remarks
May though execeptions if the same parameter is provided multiple times, consult the documentation for the specific implementation.