/// <summary>
 /// Initializes a new instance of the <see cref="PlatformClientConfiguration" /> class.
 /// </summary>
 /// <param name="baseAddress">The base address.</param>
 /// <param name="applicationIdentifier">The application identifier.</param>
 /// <param name="tokenHandler">The token handler.</param>
 public PlatformClientConfiguration(string baseAddress, IPlatformTokenHandler tokenHandler)
     : base(baseAddress, "platform", tokenHandler)
 {
     TokenHandler = tokenHandler;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PlatformClientConfiguration" /> class.
 /// </summary>
 /// <param name="tokenHandler">The token handler.</param>
 public PlatformClientConfiguration(IPlatformTokenHandler tokenHandler)
     : base("platform", tokenHandler)
 {
     TokenHandler = tokenHandler;
 }