@ -43,6 +43,7 @@ namespace GBase.DataHandling
/// </summary>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to cancel the async operation</param>
/// <returns>Returns true if successful, false if not</returns>
/// <exception cref="Exception">No root element found</exception>
public async Task < bool > Init ( CancellationToken cancellationToken )
{
if ( _ isInitialized )
@ -79,6 +80,7 @@ namespace GBase.DataHandling
/// <param name="value">The value of the property</param>
/// <param name="overwrite">If true an existing value is overwritten, if false an additional value is added</param>
/// <returns>A <see cref="Task"/> to await</returns>
/// <exception cref="ArgumentNullException"><paramref name="propertyName"/></exception>
public async Task Write < T , TProperty > ( string propertyName , string value , bool overwrite )
{
string typeName = typeof ( T ) . FullName ;
@ -135,6 +137,7 @@ namespace GBase.DataHandling
/// <param name="propertyName">The name of the property</param>
/// <param name="value">The value to set</param>
/// <returns>A <see cref="Task"/> to await</returns>
/// <exception cref="ArgumentNullException"><paramref name="propertyName"/></exception>
public async Task Remove < T , TProperty > ( string propertyName , string value )
{
string typeName = typeof ( T ) . FullName ;