- vs changes

pull/26/head
Simon G 6 years ago
parent 91e48cd387
commit b36dff749f
  1. 14
      GBase.Api/GBase.Api.csproj
  2. 14
      GBase.Client/GBase.Client.csproj
  3. 16
      GBase.Server/GBase.Server.csproj
  4. 28
      GBase.Server/Program.cs
  5. 334
      GBase/GBase.xml

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
</Project>

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>

@ -1,14 +1,14 @@
// Author: Gockner, Simon
// Created: 2020-02-07
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Server
{
class Program
{
static void Main(string[] args)
{
}
}
}
// Author: Gockner, Simon
// Created: 2020-02-07
// Copyright(c) 2020 SimonG. All Rights Reserved.
namespace GBase.Server
{
class Program
{
static void Main(string[] args)
{
}
}
}

@ -1,167 +1,167 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>GBase</name>
</assembly>
<members>
<member name="T:GBase.Attributes.GBaseEntryAttribute">
<summary>
Tags a property as an <see cref="T:GBase.Interfaces.IGBaseEntry"/>
</summary>
</member>
<member name="E:GBase.Attributes.GBaseEntryAttribute.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"/>
</summary>
</member>
<member name="T:GBase.GBaseEntry">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.GBaseEntry.#ctor">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="T:GBase.GBaseTable">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="M:GBase.GBaseTable.#ctor">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="P:GBase.GBaseTable.Type">
<summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary>
</member>
<member name="P:GBase.GBaseTable.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.GBaseTable.Entries">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.GBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></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>
</member>
<member name="M:GBase.GBaseTable.DisposeAsync">
<summary>
The <see cref="M:System.IAsyncDisposable.DisposeAsync"/> method
</summary>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask"/> to await</returns>
</member>
<member name="T:GBase.Interfaces.FileHandling.IFileHandler">
<summary>
Internal file handler
</summary>
</member>
<member name="M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.FileHandling.IFileHandler"/>
</summary>
<param name="path">The path of the database</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>
</member>
<member name="T:GBase.Interfaces.IGBase">
<summary>
The base class of the GBase database
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Settings">
<summary>
The settings of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Tables">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseTable"/>s of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="M:GBase.Interfaces.IGBase.Init(System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBase"/></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>
</member>
<member name="M:GBase.Interfaces.IGBase.AddTable(GBase.Interfaces.IGBaseTable)">
<summary>
Add a given <see cref="T:GBase.Interfaces.IGBaseTable"/> to this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns>
</member>
<member name="M:GBase.Interfaces.IGBase.RemoveTable(GBase.Interfaces.IGBaseTable)">
<summary>
Removes a given <see cref="T:GBase.Interfaces.IGBaseTable"/> from this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns>
</member>
<member name="T:GBase.Interfaces.IGBaseEntry">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="T:GBase.Interfaces.IGBaseTable">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Type">
<summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Entries">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.Interfaces.IGBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></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>
</member>
<member name="T:GBase.Interfaces.Settings.IGBaseSettings">
<summary>
Settings of a <see cref="T:GBase.Interfaces.IGBase"/> instance
</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>GBase</name>
</assembly>
<members>
<member name="T:GBase.Attributes.GBaseEntryAttribute">
<summary>
Tags a property as an <see cref="T:GBase.Interfaces.IGBaseEntry"/>
</summary>
</member>
<member name="E:GBase.Attributes.GBaseEntryAttribute.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"/>
</summary>
</member>
<member name="T:GBase.GBaseEntry">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.GBaseEntry.#ctor">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="T:GBase.GBaseTable">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="M:GBase.GBaseTable.#ctor">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="P:GBase.GBaseTable.Type">
<summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary>
</member>
<member name="P:GBase.GBaseTable.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.GBaseTable.Entries">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.GBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></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>
</member>
<member name="M:GBase.GBaseTable.DisposeAsync">
<summary>
The <see cref="M:System.IAsyncDisposable.DisposeAsync"/> method
</summary>
<returns>A <see cref="T:System.Threading.Tasks.ValueTask"/> to await</returns>
</member>
<member name="T:GBase.Interfaces.FileHandling.IFileHandler">
<summary>
Internal file handler
</summary>
</member>
<member name="M:GBase.Interfaces.FileHandling.IFileHandler.Init(System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.FileHandling.IFileHandler"/>
</summary>
<param name="path">The path of the database</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>
</member>
<member name="T:GBase.Interfaces.IGBase">
<summary>
The base class of the GBase database
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Settings">
<summary>
The settings of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBase.Tables">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseTable"/>s of this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
</member>
<member name="M:GBase.Interfaces.IGBase.Init(System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBase"/></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>
</member>
<member name="M:GBase.Interfaces.IGBase.AddTable(GBase.Interfaces.IGBaseTable)">
<summary>
Add a given <see cref="T:GBase.Interfaces.IGBaseTable"/> to this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns>
</member>
<member name="M:GBase.Interfaces.IGBase.RemoveTable(GBase.Interfaces.IGBaseTable)">
<summary>
Removes a given <see cref="T:GBase.Interfaces.IGBaseTable"/> from this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="table">The given <see cref="T:GBase.Interfaces.IGBaseTable"/></param>
<returns>True if successful, false if not</returns>
</member>
<member name="T:GBase.Interfaces.IGBaseEntry">
<summary>
An entry of a <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="T:GBase.Interfaces.IGBaseTable">
<summary>
A <see cref="T:GBase.Interfaces.IGBase"/> table
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Type">
<summary>
The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Name">
<summary>
The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="P:GBase.Interfaces.IGBaseTable.Entries">
<summary>
The <see cref="T:GBase.Interfaces.IGBaseEntry"/>s of this <see cref="T:GBase.Interfaces.IGBaseTable"/>
</summary>
</member>
<member name="M:GBase.Interfaces.IGBaseTable.Init(System.Type,System.String,System.Threading.CancellationToken)">
<summary>
Initialize this <see cref="T:GBase.Interfaces.IGBase"/>
</summary>
<param name="type">The <see cref="T:System.Type"/> of the class that this <see cref="T:GBase.Interfaces.IGBaseTable"/> represents</param>
<param name="name">The name of this <see cref="T:GBase.Interfaces.IGBaseTable"/></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>
</member>
<member name="T:GBase.Interfaces.Settings.IGBaseSettings">
<summary>
Settings of a <see cref="T:GBase.Interfaces.IGBase"/> instance
</summary>
</member>
</members>
</doc>

Loading…
Cancel
Save