12 lines
No EOL
558 B
C#
12 lines
No EOL
558 B
C#
namespace FrostFS.SDK.Client;
|
|
|
|
public interface ISessionToken
|
|
{
|
|
/// <summary>
|
|
/// Object represents token of the FrostFS Object session. A session is opened between any two sides of the
|
|
/// system, and implements a mechanism for transferring the power of attorney of actions to another network
|
|
/// member. The session has a limited validity period, and applies to a strictly defined set of operations.
|
|
/// </summary>
|
|
/// <value>Instance of the session obtained from the server</value>
|
|
FrostFsSessionToken? SessionToken { get; }
|
|
} |