@ -334,6 +334,17 @@
<exception cref= "T:System.ArgumentNullException" > <paramref name= "propertyName" /> </exception>
<exception cref= "T:System.ArgumentNullException" > <paramref name= "propertyName" /> </exception>
<exception cref= "T:GBase.DataHandling.Exceptions.InvalidXmlFileException" > No root element is set</exception>
<exception cref= "T:GBase.DataHandling.Exceptions.InvalidXmlFileException" > No root element is set</exception>
</member>
</member>
<member name= "T:GBase.Exceptions.GenericMethodNotFoundException" >
<summary >
Could not find generic method
</summary>
</member>
<member name= "M:GBase.Exceptions.GenericMethodNotFoundException.#ctor(System.String)" >
<summary >
Could not find generic method
</summary>
<param name= "functionName" > The name of the generic method</param>
</member>
<member name= "T:GBase.Exceptions.InterfaceEnumerablePassedException" >
<member name= "T:GBase.Exceptions.InterfaceEnumerablePassedException" >
<summary >
<summary >
<see cref= "T:System.Exception" /> that an interface was passed as the generic type of an <see cref= "T:System.Collections.Generic.IEnumerable`1" />
<see cref= "T:System.Exception" /> that an interface was passed as the generic type of an <see cref= "T:System.Collections.Generic.IEnumerable`1" />
@ -395,7 +406,7 @@
Factory for the <see cref= "T:GBase.Interfaces.IGBaseColumn" />
Factory for the <see cref= "T:GBase.Interfaces.IGBaseColumn" />
</summary>
</summary>
</member>
</member>
<member name= "M:GBase.Factories.IGBaseColumnFactory.Create(System.String)" >
<member name= "M:GBase.Factories.IGBaseColumnFactory.Create(System.String,System.Type )" >
<summary >
<summary >
Creates an <see cref= "T:GBase.Interfaces.IGBaseColumn" />
Creates an <see cref= "T:GBase.Interfaces.IGBaseColumn" />
</summary>
</summary>
@ -450,11 +461,12 @@
Internal file handler
Internal file handler
</summary>
</summary>
</member>
</member>
<member name= "M:GBase.FileHandling.FileHandler.Init(System.String,System.Threading.CancellationToken)" >
<member name= "M:GBase.FileHandling.FileHandler.Init(System.String,System.String,System. Threading.CancellationToken)" >
<summary >
<summary >
Initialize this <see cref= "T:GBase.Interfaces.FileHandling.IFileHandler" />
Initialize this <see cref= "T:GBase.Interfaces.FileHandling.IFileHandler" />
</summary>
</summary>
<param name= "path" > The path of the database</param>
<param name= "path" > The path of the database</param>
<param name= "folderName" > </param>
<param name= "cancellationToken" > A <see cref= "T:System.Threading.CancellationToken" /> to cancel the asynchronous operation</param>
<param name= "cancellationToken" > A <see cref= "T:System.Threading.CancellationToken" /> to cancel the asynchronous operation</param>
<returns > True if successful, false if not</returns>
<returns > True if successful, false if not</returns>
</member>
</member>
@ -525,7 +537,7 @@
A column of a <see cref= "T:GBase.Interfaces.IGBaseTable" />
A column of a <see cref= "T:GBase.Interfaces.IGBaseTable" />
</summary>
</summary>
</member>
</member>
<member name= "M:GBase.GBaseColumn.#ctor(System.String)" >
<member name= "M:GBase.GBaseColumn.#ctor(System.String,System.Type )" >
<summary >
<summary >
A column of a <see cref= "T:GBase.Interfaces.IGBaseTable" />
A column of a <see cref= "T:GBase.Interfaces.IGBaseTable" />
</summary>
</summary>
@ -647,6 +659,60 @@
<returns > An <see cref= "T:System.Collections.Generic.IEnumerable`1" /> of <see cref= "T:System.Type" /> <typeparamref name= "TEnumerable" /> </returns>
<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>
<exception cref= "T:GBase.Exceptions.InterfaceEnumerablePassedException" > Interface was passed to an <see cref= "T:System.Collections.Generic.IEnumerable`1" /> </exception>
</member>
</member>
<member name= "M:GBase.Helpers.GenericMethodCaller.Call(System.Object,System.String,System.Reflection.BindingFlags,System.Type,System.Object[])" >
<summary >
Call a generic method without generic type parameters
</summary>
<param name= "caller" > The caller of the method</param>
<param name= "functionName" > The name of the method to call</param>
<param name= "bindingFlags" > The <see cref= "T:System.Reflection.BindingFlags" /> to find the method</param>
<param name= "genericParameter" > The generic parameter as <see cref= "T:System.Type" /> parameter</param>
<param name= "parameters" > The parameters of the method</param>
<returns > The result of invoking the method</returns>
<exception cref= "T:GBase.Exceptions.GenericMethodNotFoundException" > Could not find the generic method</exception>
<exception cref= "T:System.Exception" > Any <see cref= "T:System.Exception" /> thrown after invoking the generic method</exception>
</member>
<member name= "M:GBase.Helpers.GenericMethodCaller.Call(System.Object,System.String,System.Reflection.BindingFlags,System.Type,System.Type,System.Object[])" >
<summary >
Call a generic method without generic type parameters
</summary>
<param name= "caller" > The caller of the method</param>
<param name= "functionName" > The name of the method to call</param>
<param name= "bindingFlags" > The <see cref= "T:System.Reflection.BindingFlags" /> to find the method</param>
<param name= "genericParameter" > The generic parameter as <see cref= "T:System.Type" /> parameter</param>
<param name= "secondGenericParameter" > </param>
<param name= "parameters" > The parameters of the method</param>
<returns > The result of invoking the method</returns>
<exception cref= "T:GBase.Exceptions.GenericMethodNotFoundException" > Could not find the generic method</exception>
<exception cref= "T:System.Exception" > Any <see cref= "T:System.Exception" /> thrown after invoking the generic method</exception>
</member>
<member name= "M:GBase.Helpers.GenericMethodCaller.CallAsync(System.Object,System.String,System.Reflection.BindingFlags,System.Type,System.Object[])" >
<summary >
Call a generic method asynchronously without generic type parameters
</summary>
<param name= "caller" > The caller of the method</param>
<param name= "functionName" > The name of the method to call</param>
<param name= "bindingFlags" > The <see cref= "T:System.Reflection.BindingFlags" /> to find the method</param>
<param name= "genericParameter" > The generic parameter as <see cref= "T:System.Type" /> parameter</param>
<param name= "parameters" > The parameters of the method</param>
<returns > The result of invoking the method</returns>
<exception cref= "T:GBase.Exceptions.GenericMethodNotFoundException" > Could not find the generic method</exception>
<exception cref= "T:System.Exception" > Any <see cref= "T:System.Exception" /> thrown after invoking the generic method</exception>
</member>
<member name= "M:GBase.Helpers.GenericMethodCaller.CallAsync(System.Object,System.String,System.Reflection.BindingFlags,System.Type,System.Type,System.Object[])" >
<summary >
Call a generic method asynchronously without generic type parameters
</summary>
<param name= "caller" > The caller of the method</param>
<param name= "functionName" > The name of the method to call</param>
<param name= "bindingFlags" > The <see cref= "T:System.Reflection.BindingFlags" /> to find the method</param>
<param name= "genericParameter" > The generic parameter as <see cref= "T:System.Type" /> parameter</param>
<param name= "secondGenericParameter" > </param>
<param name= "parameters" > The parameters of the method</param>
<returns > The result of invoking the method</returns>
<exception cref= "T:GBase.Exceptions.GenericMethodNotFoundException" > Could not find the generic method</exception>
<exception cref= "T:System.Exception" > Any <see cref= "T:System.Exception" /> thrown after invoking the generic method</exception>
</member>
<member name= "T:GBase.Installers.DataHandlingInstaller" >
<member name= "T:GBase.Installers.DataHandlingInstaller" >
<summary >
<summary >
<see cref= "T:LightweightIocContainer.Interfaces.Installers.IIocInstaller" /> for the data handling
<see cref= "T:LightweightIocContainer.Interfaces.Installers.IIocInstaller" /> for the data handling
@ -904,11 +970,12 @@
Internal file handler
Internal file handler
</summary>
</summary>
</member>
</member>
<member name= "M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.Threading.CancellationToken)" >
<member name= "M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.String,System. Threading.CancellationToken)" >
<summary >
<summary >
Initialize this <see cref= "T:GBase.Interfaces.FileHandling.IFileHandler" />
Initialize this <see cref= "T:GBase.Interfaces.FileHandling.IFileHandler" />
</summary>
</summary>
<param name= "path" > The path of the database</param>
<param name= "path" > The path of the database</param>
<param name= "folderName" > </param>
<param name= "cancellationToken" > A <see cref= "T:System.Threading.CancellationToken" /> to cancel the asynchronous operation</param>
<param name= "cancellationToken" > A <see cref= "T:System.Threading.CancellationToken" /> to cancel the asynchronous operation</param>
<returns > True if successful, false if not</returns>
<returns > True if successful, false if not</returns>
</member>
</member>