Extract response exceptions
[smsapi-csharp.git] / smsapi / ClientBase.cs
blob7b048ea364c37f673506ded6e57632ff92ff8227
1 using System;
2 using System.Collections.Generic;
3 using System.Reflection;
5 namespace SMSApi.Api
7 public abstract class ClientBase : IClient
9 private readonly string _clientAgent = $"smsapi-csharp-client/{Assembly.GetExecutingAssembly().GetName().Version} {Environment.Version}";
11 public abstract KeyValuePair<string, string> DefaultRequestHeaders { get; }
13 public string GetClientAgent()
15 return _clientAgent;