- update .xml

pull/26/head
Simon Gockner 6 years ago
parent a7b2a71092
commit 4939474c6e
  1. 47
      GBase.Api/GBase.Api.xml
  2. 29
      GBase/GBase.xml

@ -85,6 +85,23 @@
<see cref="T:System.EventArgs"/> for the <see cref="T:GBase.Api.INotifyGBaseEntryChanged"/> event
</summary>
</member>
<member name="M:GBase.Api.GBaseEntryChangedEventArgs.#ctor(System.String,System.Object)">
<summary>
<see cref="T:System.EventArgs"/> for the <see cref="T:GBase.Api.INotifyGBaseEntryChanged"/> event
</summary>
<param name="columnName">The name of the IGBaseColumn</param>
<param name="value">The new value</param>
</member>
<member name="P:GBase.Api.GBaseEntryChangedEventArgs.ColumnName">
<summary>
The name of the IGBaseColumn
</summary>
</member>
<member name="P:GBase.Api.GBaseEntryChangedEventArgs.Value">
<summary>
The new value
</summary>
</member>
<member name="T:GBase.Api.IGBaseObject">
<summary>
GBase object that allows conversion from <see cref="T:System.String"/>
@ -101,11 +118,41 @@
Notify the GBase that an entry has changed
</summary>
</member>
<member name="E:GBase.Api.INotifyGBaseEntryChanged.GBaseEntryChanged">
<summary>
Notify the GBase that an entry has changed
</summary>
</member>
<member name="T:GBase.Api.NotifyGBaseEntryChanged">
<summary>
Notify the GBase that an entry has changed
</summary>
</member>
<member name="E:GBase.Api.NotifyGBaseEntryChanged.GBaseEntryChanged">
<summary>
Notify the GBase that an entry has changed
</summary>
</member>
<member name="M:GBase.Api.NotifyGBaseEntryChanged.RaiseGBaseEntryChanged(System.Object,System.String,System.Object)">
<summary>
Raise the <see cref="E:GBase.Api.NotifyGBaseEntryChanged.GBaseEntryChanged"/> event
</summary>
<param name="entry">The entry (sender)</param>
<param name="columnName">The name of the IGBaseColumn</param>
<param name="value">The new value</param>
</member>
<member name="M:GBase.Api.NotifyGBaseEntryChanged.RaiseGBaseEntryRemoved(System.Object)">
<summary>
Raise the GBaseEntry removed (<see cref="E:GBase.Api.NotifyGBaseEntryChanged.GBaseEntryChanged"/> event without args)
</summary>
<param name="entry">The entry (sender)</param>
</member>
<member name="M:GBase.Api.NotifyGBaseEntryChanged.GBaseEntryChangedCallback(System.IAsyncResult)">
<summary>
Callback for the <see cref="E:GBase.Api.NotifyGBaseEntryChanged.GBaseEntryChanged"/> event
</summary>
<param name="asyncResult">The <see cref="T:System.IAsyncResult"/></param>
</member>
<member name="T:GBase.Api.Services.IGBaseColumnService">
<summary>
ServiceContract for the GBaseColumn

@ -9,11 +9,6 @@
Tags a property as an <see cref="T:GBase.Interfaces.IGBaseColumn"/>
</summary>
</member>
<member name="E:GBase.Attributes.GBaseColumnAttribute.ValueChanged">
<summary>
The value of the linked property changed
</summary>
</member>
<member name="T:GBase.Attributes.GBaseTableAttribute">
<summary>
Tags a class as a <see cref="T:GBase.Interfaces.IGBaseTable"/>
@ -282,6 +277,7 @@
</summary>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the async operation</param>
<returns>Returns true if successful, false if not</returns>
<exception cref="T:System.Exception">No root element found</exception>
</member>
<member name="M:GBase.DataHandling.XmlDataReader.Read``2(System.String)">
<summary>
@ -291,6 +287,8 @@
<typeparam name="TProperty">The <see cref="T:System.Type"/> of the property</typeparam>
<param name="propertyName">The name of the property</param>
<returns>The data of the given property, null if no data found</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="propertyName"/></exception>
<exception cref="T:System.InvalidOperationException">Invalid <see cref="T:System.Type"/> found for the read object</exception>
</member>
<member name="M:GBase.DataHandling.XmlDataReader.DisposeAsync">
<summary>
@ -316,6 +314,7 @@
</summary>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> to cancel the async operation</param>
<returns>Returns true if successful, false if not</returns>
<exception cref="T:System.Exception">No root element found</exception>
</member>
<member name="M:GBase.DataHandling.XmlDataWriter.Write``2(System.String,System.String,System.Boolean)">
<summary>
@ -327,6 +326,7 @@
<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="T:System.Threading.Tasks.Task"/> to await</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="propertyName"/></exception>
</member>
<member name="M:GBase.DataHandling.XmlDataWriter.Remove``2(System.String,System.String)">
<summary>
@ -337,6 +337,7 @@
<param name="propertyName">The name of the property</param>
<param name="value">The value to set</param>
<returns>A <see cref="T:System.Threading.Tasks.Task"/> to await</returns>
<exception cref="T:System.ArgumentNullException"><paramref name="propertyName"/></exception>
</member>
<member name="M:GBase.DataHandling.XmlDataWriter.DisposeAsync">
<summary>
@ -575,6 +576,11 @@
The <see cref="T:GBase.Interfaces.IGBaseColumn"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.GBaseTable.Entries">
<summary>
The entries of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.GBaseTable.Init(System.Type,System.String,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
@ -599,6 +605,13 @@
<param name="column">The given <see cref="T:GBase.Interfaces.IGBaseColumn"/></param>
<returns>True if successful, false if not</returns>
</member>
<member name="M:GBase.GBaseTable.OnGBaseEntryChanged(System.Object,GBase.Api.GBaseEntryChangedEventArgs)">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> entry changed
</summary>
<param name="entry">The entry (sender)</param>
<param name="args">The <see cref="T:GBase.Api.GBaseEntryChangedEventArgs"/></param>
</member>
<member name="M:GBase.GBaseTable.DisposeAsync">
<summary>
The <see cref="M:System.IAsyncDisposable.DisposeAsync"/> method
@ -619,6 +632,7 @@
<typeparam name="TEnumerable">The <see cref="T:System.Collections.Generic.IEnumerable`1"/> <see cref="T:System.Type"/></typeparam>
<param name="string">The given <see cref="T:System.String"/></param>
<returns>An <see cref="T:System.Collections.Generic.IEnumerable`1"/> of <see cref="T:System.Type"/> <typeparamref name="TEnumerable"/></returns>
<exception cref="T:GBase.Exceptions.InterfaceEnumerablePassedException">Interface was passed to an <see cref="T:System.Collections.Generic.IEnumerable`1"/></exception>
</member>
<member name="T:GBase.Installers.DataHandlingInstaller">
<summary>
@ -968,6 +982,11 @@
The <see cref="T:GBase.Interfaces.IGBaseColumn"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Entries">
<summary>
The entries of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.Interfaces.IGBaseTable.Init(System.Type,System.String,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>

Loading…
Cancel
Save