first iteration - base classes and methods Signed-off-by: Pavel Gross <p.gross@yadro.com>
11 lines
353 B
C#
11 lines
353 B
C#
namespace FrostFS.SDK.ClientV2;
|
|
|
|
public interface IContext
|
|
{
|
|
/// <summary>
|
|
/// The method call can be extended with additional behavior like canceling by timeout or user's request,
|
|
/// callbacks, interceptors.
|
|
/// </summary>
|
|
/// <value>Additional parameters for calling the method</value>
|
|
CallContext? Context { get; set; }
|
|
}
|