aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/Web/FSEWebClientBase.cs
blob: d5fd41001c3e908ddecd5a659007454f932a52d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Threading.Tasks;
using Tango.Web;

namespace Tango.FSE.Common.Web
{
    /// <summary>
    /// Represents a machine service FSE web client.
    /// </summary>
    /// <seealso cref="Tango.Web.TangoWebClient" />
    public abstract class FSEWebClientBase : TangoWebClientV2<Tango.FSE.Web.Messages.LoginRequest, Tango.FSE.Web.Messages.LoginResponse>
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="FSEWebClientBase"/> class.
        /// </summary>
        /// <param name="address">The service address.</param>
        /// <param name="token">Existing token.</param>
        public FSEWebClientBase(String address, String token) : base(address, "FSE", token)
        {

        }

        /// <summary>
        /// Initializes a new instance of the <see cref="FSEWebClientBase"/> class.
        /// </summary>
        /// <param name="address">The service address.</param>
        public FSEWebClientBase(String address) : this(address, null)
        {

        }

        /// <summary>
        /// Initializes a new instance of the <see cref="FSEWebClientBase"/> class.
        /// </summary>
        /// <param name="cloned">Other instance.</param>
        public FSEWebClientBase(FSEWebClientBase cloned) : base(cloned)
        {

        }

    }
}