diff --git a/Opc.Ua.CloudLib.Client/UACloudLibClient.cs b/Opc.Ua.CloudLib.Client/UACloudLibClient.cs
index 0e9f47b9..ad9f9dcc 100644
--- a/Opc.Ua.CloudLib.Client/UACloudLibClient.cs
+++ b/Opc.Ua.CloudLib.Client/UACloudLibClient.cs
@@ -59,14 +59,16 @@ public partial class UACloudLibClient : IDisposable
private string _username = "";
private string _password = "";
- private Uri BaseEndpoint { get; set; }
-
private AuthenticationHeaderValue Authentication
{
set => _client.HttpClient.DefaultRequestHeaders.Authorization = value;
get => _client.HttpClient.DefaultRequestHeaders.Authorization;
}
+ /// Gets the Base endpoint used to access the api.
+ /// The url of the endpoint
+ public Uri BaseEndpoint { get; private set; }
+
/// Gets or sets the username.
/// The username.
public string Username { get { return _username; } set { _username = value; UserDataChanged(); } }