diff --git a/GBase.Client/Services/Service.cs b/GBase.Client/Services/Service.cs
index d72602e..fe1e5b6 100644
--- a/GBase.Client/Services/Service.cs
+++ b/GBase.Client/Services/Service.cs
@@ -36,7 +36,8 @@ namespace GBase.Client.Services
///
/// The
/// The endpoint for this
- ///
+ /// A for the
+ /// Invalid used
private ChannelFactory OpenFactory(ServerProtocol serverProtocol, string endpoint)
{
ChannelFactory factory;
diff --git a/GBase/DataHandling/XmlDataReader.cs b/GBase/DataHandling/XmlDataReader.cs
index 3586d76..03b7396 100644
--- a/GBase/DataHandling/XmlDataReader.cs
+++ b/GBase/DataHandling/XmlDataReader.cs
@@ -42,6 +42,7 @@ namespace GBase.DataHandling
///
/// A to cancel the async operation
/// Returns true if successful, false if not
+ /// No root element found
public async Task Init(CancellationToken cancellationToken)
{
if (_isInitialized)
@@ -66,6 +67,8 @@ namespace GBase.DataHandling
/// The of the property
/// The name of the property
/// The data of the given property, null if no data found
+ ///
+ /// Invalid found for the read object
public async Task> Read(string propertyName)
//TODO: Read currently doesn't work for newly added items -> probably because file was loaded before new items were added; is probably not a problem -> cache
{
diff --git a/GBase/DataHandling/XmlDataWriter.cs b/GBase/DataHandling/XmlDataWriter.cs
index f25f13d..3799f0b 100644
--- a/GBase/DataHandling/XmlDataWriter.cs
+++ b/GBase/DataHandling/XmlDataWriter.cs
@@ -43,6 +43,7 @@ namespace GBase.DataHandling
///
/// A to cancel the async operation
/// Returns true if successful, false if not
+ /// No root element found
public async Task Init(CancellationToken cancellationToken)
{
if (_isInitialized)
@@ -79,6 +80,7 @@ namespace GBase.DataHandling
/// The value of the property
/// If true an existing value is overwritten, if false an additional value is added
/// A to await
+ ///
public async Task Write(string propertyName, string value, bool overwrite)
{
string typeName = typeof(T).FullName;
@@ -135,6 +137,7 @@ namespace GBase.DataHandling
/// The name of the property
/// The value to set
/// A to await
+ ///
public async Task Remove(string propertyName, string value)
{
string typeName = typeof(T).FullName;
diff --git a/GBase/Helpers/Enumerables.cs b/GBase/Helpers/Enumerables.cs
index 6068a65..4be68df 100644
--- a/GBase/Helpers/Enumerables.cs
+++ b/GBase/Helpers/Enumerables.cs
@@ -42,6 +42,7 @@ namespace GBase.Helpers
/// The
/// The given
/// An of
+ /// Interface was passed to an
public static TEnumerable ConvertToGBaseEnumerable(string @string)
{
//get generic type parameter of TEnumerable