Files
runner/src/Sdk/DTWebApi/WebApi/TaskAgentSession.cs
JoannaaKL efffbaeabc Add utf8 with bom (#2641)
* Change default file encoding
2023-06-02 21:47:59 +02:00

80 lines
2.1 KiB
C#

using System;
using System.Runtime.Serialization;
namespace GitHub.DistributedTask.WebApi
{
/// <summary>
/// Represents a session for performing message exchanges from an agent.
/// </summary>
[DataContract]
public class TaskAgentSession
{
public TaskAgentSession()
{
}
/// <summary>
/// Initializes a new <c>TaskAgentSession</c> instance with the specified owner name and agent.
/// </summary>
/// <param name="ownerName">The name of the owner for this session. This should typically be the agent machine</param>
/// <param name="agent">The target agent for the session</param>
public TaskAgentSession(
String ownerName,
TaskAgentReference agent)
{
this.Agent = agent;
this.OwnerName = ownerName;
}
/// <summary>
/// Gets the unique identifier for this session.
/// </summary>
[DataMember]
public Guid SessionId
{
get;
internal set;
}
/// <summary>
/// Gets the key used to encrypt message traffic for this session.
/// </summary>
[DataMember(EmitDefaultValue = false)]
public TaskAgentSessionKey EncryptionKey
{
get;
internal set;
}
/// <summary>
/// Gets or sets the owner name of this session. Generally this will be the machine of origination.
/// </summary>
[DataMember]
public String OwnerName
{
get;
set;
}
/// <summary>
/// Gets or sets the agent which is the target of the session.
/// </summary>
[DataMember]
public TaskAgentReference Agent
{
get;
set;
}
/// <summary>
/// Gets or sets whether to use FIPS compliant encryption scheme for job message key
/// </summary>
[DataMember]
public bool UseFipsEncryption
{
get;
set;
}
}
}