Interface IKeplerServiceFactory
Represents the Kepler service factory that provides a set of methods to communicate with Kepler services.
Namespace: Relativity.Testing.Framework.Api.Kepler
Assembly: Relativity.Testing.Framework.Api.dll
Syntax
public interface IKeplerServiceFactory
Methods
| Improve this Doc View SourceGetServiceProxy<T>()
Gets a service proxy for the curent user.
Declaration
T GetServiceProxy<T>()
where T : IDisposable
Returns
Type | Description |
---|---|
T | Service proxy for the given type. |
Type Parameters
Name | Description |
---|---|
T | Kepler service interface. |
GetServiceProxy<T>(String, String)
Gets a service proxy for the specified user.
Declaration
T GetServiceProxy<T>(string username, string password)
where T : IDisposable
Parameters
Type | Name | Description |
---|---|---|
System.String | username | The username. |
System.String | password | The password. |
Returns
Type | Description |
---|---|
T | Service proxy for the given type. |
Type Parameters
Name | Description |
---|---|
T | Kepler service interface. |