Bin und Debug
This commit is contained in:
BIN
Interfaces/bin/Debug/BouncyCastle.Cryptography.dll
Normal file
BIN
Interfaces/bin/Debug/BouncyCastle.Cryptography.dll
Normal file
Binary file not shown.
30259
Interfaces/bin/Debug/BouncyCastle.Cryptography.xml
Normal file
30259
Interfaces/bin/Debug/BouncyCastle.Cryptography.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/DigitalData.Modules.Base.dll
Normal file
BIN
Interfaces/bin/Debug/DigitalData.Modules.Base.dll
Normal file
Binary file not shown.
361
Interfaces/bin/Debug/DigitalData.Modules.Base.xml
Normal file
361
Interfaces/bin/Debug/DigitalData.Modules.Base.xml
Normal file
@@ -0,0 +1,361 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
DigitalData.Modules.Base
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DigitalData.Modules.Base.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Base.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Base.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.BaseClass">
|
||||
<summary>
|
||||
BaseClass that sets up a Logger.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.Encryption">
|
||||
<summary>
|
||||
https://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.DatabaseEx.NotNull``1(System.Data.DataRow,System.String,``0)">
|
||||
<summary>
|
||||
TODO: Deprecate
|
||||
Checks a Row value for three different `null` values,
|
||||
Nothing, Empty String, DBNull
|
||||
|
||||
Returns the original value if the value is not null, or `defaultValue`
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value</typeparam>
|
||||
<param name="pRow">The DataRow that contains the value</param>
|
||||
<param name="pColumn">The column name</param>
|
||||
<param name="pDefaultValue">The default value</param>
|
||||
<returns>The original value or the default value</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.GetChecksum(System.String)">
|
||||
<summary>
|
||||
Reads the file at `FilePath` and computes a SHA256 Hash from its contents
|
||||
</summary>
|
||||
<param name="FilePath"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.GetVersionedFilename(System.String)">
|
||||
<summary>
|
||||
Adds file version string to given filename `Destination` if that file already exists.
|
||||
</summary>
|
||||
<param name="pFilePath">Filepath to check</param>
|
||||
<returns>Versioned string</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.GetVersionedFilenameWithFilecheck(System.String,System.Func{System.String,System.Boolean})">
|
||||
<summary>
|
||||
Adds file version string to given filename `Destination` if that file already exists.
|
||||
</summary>
|
||||
<param name="pFilePath">Filepath to check</param>
|
||||
<param name="pFileExistsAction">Custom action to check for file existence</param>
|
||||
<returns>Versioned string</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.GetVersionedString(System.String)">
|
||||
<summary>
|
||||
Split String at version separator to:
|
||||
check if string is already versioned,
|
||||
get the string version of an already versioned string
|
||||
</summary>
|
||||
<example>
|
||||
Examples:
|
||||
test1.pdf --> test1 --> ['test1'] --> no fileversion
|
||||
test1~2.pdf --> test1~2 --> ['test1', '2'] --> version 2
|
||||
test1~12345~2.pdf --> test1~12345~2 --> ['test1', '12345', '2'] --> still version 2
|
||||
somestring~3 --> somestring~3 --> ['somestring', '3'] --> version 3
|
||||
</example>
|
||||
<param name="pString">The string to versioned</param>
|
||||
<returns>Tuple of string and version</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.RemoveFiles(System.String,System.Int32,System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Removes files in a directory filtered by filename, extension and last write date
|
||||
</summary>
|
||||
<param name="Path">The directory in which files will be deleted</param>
|
||||
<param name="FileKeepTime">Only delete files which are older than x days. Must be between 0 and 1000 days.</param>
|
||||
<param name="FileBaseName">A filename filter which will be checked</param>
|
||||
<param name="FileExtension">A file extension which will be checked</param>
|
||||
<param name="ContinueOnError">Should the function continue with deleting when a file could not be deleted?</param>
|
||||
<returns>True if all files were deleted or if no files were deleted, otherwise false</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.CopyDirectory(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Copied from https://docs.microsoft.com/en-us/dotnet/standard/io/how-to-copy-directories
|
||||
</summary>
|
||||
<param name="SourceDirName"></param>
|
||||
<param name="DestDirName"></param>
|
||||
<param name="CopySubDirs"></param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.CreateDirectory(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Tries to create a directory and returns its path.
|
||||
Returns a temp path if `DirectoryPath` can not be created or written to.
|
||||
</summary>
|
||||
<param name="DirectoryPath">The directory to create</param>
|
||||
<param name="TestWriteAccess">Should a write access test be performed?</param>
|
||||
<returns>The used path</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.TestFileIsLocked(System.String)">
|
||||
<summary>
|
||||
Checks if a file is locked, ie. in use by another process.
|
||||
</summary>
|
||||
<remarks>
|
||||
https://docs.microsoft.com/en-us/dotnet/standard/io/handling-io-errors
|
||||
https://stackoverflow.com/questions/876473/is-there-a-way-to-check-if-a-file-is-in-use
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FilesystemEx.TestFileSizeIsLessThanMaxFileSize(System.String,System.Int32)">
|
||||
<summary>
|
||||
Checks the size of the supplied file.
|
||||
</summary>
|
||||
<param name="pFilePath"></param>
|
||||
<param name="pMaxFileSizeInMegaBytes"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileWatcher.HandleFileChanged(System.Object,System.IO.FileSystemEventArgs)">
|
||||
<summary>
|
||||
This may fire twice for a single save operation,
|
||||
see: https://blogs.msdn.microsoft.com/oldnewthing/20140507-00/?p=1053/
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.FileWatcherFilters">
|
||||
<summary>
|
||||
Built-in filters for FileWatcher that are useful for correctly detecting changes on Office documents (currently Office 2016)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.FileWatcherFilters.BaseFileFilter">
|
||||
<summary>
|
||||
Base Filter that all filters must inherit from
|
||||
Provides two functions that may be overridden and some useful file extension lists
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.FileWatcherFilters.TempFileFilter">
|
||||
<summary>
|
||||
Simple Filter that filters changes made on temporary files
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.FileWatcherFilters.OfficeFileFilter">
|
||||
<summary>
|
||||
Filter to detect changes on Office files
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ModuleExtensions.Truncate(System.String,System.Int32)">
|
||||
<summary>
|
||||
Truncates a string to the specified length if it exceeds that length.
|
||||
</summary>
|
||||
<param name="pString">The string</param>
|
||||
<param name="pLength">The maximum string length</param>
|
||||
<returns>The truncated string</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ModuleExtensions.EscapeForSQL(System.String)">
|
||||
<summary>
|
||||
Replaces single quotes in text for SQL Commands.
|
||||
</summary>
|
||||
<param name="pString">The string</param>
|
||||
<returns>The escaped string.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ModuleExtensions.ToBoolean(System.String)">
|
||||
<summary>
|
||||
Converts a string to boolean. Accepts true and 1 as truthy values
|
||||
</summary>
|
||||
<param name="pString">The input string</param>
|
||||
<returns>True if input is true or 1, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ModuleExtensions.IsNullOrEmpty(System.String)">
|
||||
<summary>
|
||||
Checks if a string is null or empty
|
||||
</summary>
|
||||
<param name="pString">The input string</param>
|
||||
<returns>True string is null or empty, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ModuleExtensions.IsNotNullOrEmpty(System.String)">
|
||||
<summary>
|
||||
Checks if a string is NOT null or empty
|
||||
</summary>
|
||||
<param name="pString">The input string</param>
|
||||
<returns>True string is null or empty, otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileEx.GetChecksumFromFileContents(System.String)">
|
||||
<summary>
|
||||
Reads the file at `FilePath` and computes a SHA256 Hash from its contents
|
||||
</summary>
|
||||
<param name="pFilePath"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileEx.GetDateDirectory(System.String,System.DateTime)">
|
||||
<summary>
|
||||
Returns a Dictionary path in the form of [Base]\[Year]\[Month]\[Day]
|
||||
</summary>
|
||||
<param name="pBaseDirectory">The basedirectory</param>
|
||||
<param name="pDate">The date to be used</param>
|
||||
<returns>The final directory path</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileEx.GetDateDirectory(System.String)">
|
||||
<summary>
|
||||
Returns a Dictionary path in the form of [Base]\[Year]\[Month]\[Day] based on the current date
|
||||
</summary>
|
||||
<param name="pBaseDirectory">The basedirectory</param>
|
||||
<returns>The final directory path</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileEx.CreateDateDirectory(System.String,System.DateTime)">
|
||||
<summary>
|
||||
Creates a Dictionary in the form of [Base]\[Year]\[Month]\[Day]
|
||||
</summary>
|
||||
<param name="pBaseDirectory">The basedirectory</param>
|
||||
<param name="pDate">The date to be used</param>
|
||||
<returns>The created path. If the directory cannot be created, Nothing.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.FileEx.CreateDateDirectory(System.String)">
|
||||
<summary>
|
||||
Creates a Dictionary in the form of [Base]\[Year]\[Month]\[Day] based on the current date
|
||||
</summary>
|
||||
<param name="pBaseDirectory">The basedirectory</param>
|
||||
<returns>The created path. If the directory cannot be created, Nothing.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ObjectEx.NotNull``1(``0,``0)">
|
||||
<summary>
|
||||
Checks a value for three different `null` values,
|
||||
Nothing, Empty String, DBNull
|
||||
|
||||
Returns the original value if the value is not null, or `defaultValue`
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value</typeparam>
|
||||
<param name="value">The value</param>
|
||||
<param name="defaultValue">The default Value</param>
|
||||
<returns>The original value or the default value</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ObjectEx.ToEnum``1(System.String)">
|
||||
<summary>
|
||||
Converts a String value to the given Enum
|
||||
</summary>
|
||||
<typeparam name="T">The Enum Type</typeparam>
|
||||
<param name="value">The string value to convert</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ObjectEx.ToEnum``1(System.Int32)">
|
||||
<summary>
|
||||
Converts an Integer value to the given Enum
|
||||
</summary>
|
||||
<typeparam name="T">The Enum Type</typeparam>
|
||||
<param name="value">The integer value to convert</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ObjectEx.ToEnum``1(System.Int64)">
|
||||
<summary>
|
||||
Converts a Long value to the given Enum
|
||||
</summary>
|
||||
<typeparam name="T">The Enum Type</typeparam>
|
||||
<param name="value">The long value to convert</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.GraphicsEx.GetBrightness(System.Drawing.Color)">
|
||||
<summary>
|
||||
Returns the brightness of a color as a number between 0 and 1
|
||||
</summary>
|
||||
<param name="pColor">The color to check</param>
|
||||
<returns>Low values for dark colors, high values for bright colors.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.GraphicsEx.GetContrastedColor(System.Drawing.Color)">
|
||||
<summary>
|
||||
Returns a foreground/text color of either black or white, depending on the brightness of `pOtherColor`
|
||||
</summary>
|
||||
<param name="pOtherColor">The Background color whose brightness is determined</param>
|
||||
<returns>A text color which is either white or black</returns>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Base.LanguageEx">
|
||||
<summary>
|
||||
Functions relating to i18n, Cultures, Translations
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.LanguageEx.SetApplicationLanguage(DigitalData.Modules.Logging.Logger,System.String,System.String)">
|
||||
<summary>
|
||||
Sets the Language of the current thread by setting CurrentCulture and CurrentUICulture
|
||||
</summary>
|
||||
<param name="pLogger">A Logger instance</param>
|
||||
<param name="pUserLanguage">A language code in the form of 'de-DE'</param>
|
||||
<param name="pUserDateFormat">A custom date pattern</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.LanguageEx.LogApplicationLanguage(DigitalData.Modules.Logging.Logger)">
|
||||
<summary>
|
||||
Logs the culture settings of the current thread
|
||||
</summary>
|
||||
<param name="pLogger">A Logger instance</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ScreenEx.IsVisibleOnAnyScreen(System.Drawing.Point)">
|
||||
<summary>
|
||||
Checks if a point is Visible on any screen
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ScreenEx.SizeIsVisible(System.Drawing.Size)">
|
||||
<summary>
|
||||
Checks if Size is not negative
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.ScreenEx.LocationIsVisible(System.Drawing.Point)">
|
||||
<summary>
|
||||
Checks if Location is not negative
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.StringEx.ConvertTextToSlug(System.String)">
|
||||
<summary>
|
||||
Creates a "slug" from text that can be used as part of a valid URL.
|
||||
Invalid characters are converted to hyphens. Punctuation that Is
|
||||
perfect valid in a URL Is also converted to hyphens to keep the
|
||||
result mostly text. Steps are taken to prevent leading, trailing,
|
||||
And consecutive hyphens.
|
||||
</summary>
|
||||
<param name="s">The string to convert</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.StringEx.RemoveInvalidCharacters(System.String)">
|
||||
<summary>
|
||||
Removes Invalid characters from a string, suitable for file and path names
|
||||
|
||||
Removed characters are:
|
||||
|
||||
* Illegal File-characters
|
||||
* Illegal Path-characters
|
||||
* Unicode characters that classify as Emoji
|
||||
* All characters above codepoint U+10000
|
||||
|
||||
See:
|
||||
https://stackoverflow.com/questions/46905176/detecting-all-emojis
|
||||
https://stackoverflow.com/questions/28023682/how-do-i-remove-emoji-characters-from-a-string
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.StringEx.GetShortGUID">
|
||||
<summary>
|
||||
Generates a random short (8 characters) guid
|
||||
</summary>
|
||||
<returns>The generated guid as a String</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.StringEx.TestContainsInvalidCharacters(System.String)">
|
||||
<summary>
|
||||
Checks if string contains invalid characters
|
||||
</summary>
|
||||
<param name="pString"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Base.StringEx.GetChecksum(System.String)">
|
||||
<summary>
|
||||
Creates a hash using the SHA256 algorithm and returns it
|
||||
</summary>
|
||||
<param name="pStringToCheck">Any string</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/DigitalData.Modules.Database.dll
Normal file
BIN
Interfaces/bin/Debug/DigitalData.Modules.Database.dll
Normal file
Binary file not shown.
23
Interfaces/bin/Debug/DigitalData.Modules.Database.dll.config
Normal file
23
Interfaces/bin/Debug/DigitalData.Modules.Database.dll.config
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
</configSections>
|
||||
<entityFramework>
|
||||
<defaultConnectionFactory type="EntityFramework.Firebird.FbConnectionFactory, EntityFramework.Firebird" />
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
<provider invariantName="FirebirdSql.Data.FirebirdClient" type="EntityFramework.Firebird.FbProviderServices, EntityFramework.Firebird" />
|
||||
</providers>
|
||||
</entityFramework>
|
||||
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="FirebirdSql.Data.FirebirdClient" publicKeyToken="3750abcc3150b00c" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-7.5.0.0" newVersion="7.5.0.0" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" /></startup></configuration>
|
||||
335
Interfaces/bin/Debug/DigitalData.Modules.Database.xml
Normal file
335
Interfaces/bin/Debug/DigitalData.Modules.Database.xml
Normal file
@@ -0,0 +1,335 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
DigitalData.Modules.Database
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DigitalData.Modules.Database.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Database.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Database.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.Create(DigitalData.Modules.Logging.LogConfig,System.String)">
|
||||
<summary>
|
||||
Create a new instance of Dispatcher. This is the preferred way to create the dispatcher.
|
||||
</summary>
|
||||
<param name="pLogConfig">An instance of LogConfig</param>
|
||||
<param name="pConnectionString">Initial connectionstring for connecting to DD_ECM database.</param>
|
||||
<returns>An instance of Dispatcher with connections</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.#ctor(DigitalData.Modules.Logging.LogConfig,System.Collections.Generic.List{DigitalData.Modules.Database.Dispatcher.DispatcherConnection})">
|
||||
<summary>
|
||||
Create a new instance of Dispatcher. Needs a manually constructed list of connection objects.
|
||||
</summary>
|
||||
<param name="pLogConfig">An instance of LogConfig</param>
|
||||
<param name="pConnections">A list of DispatcherConnection objects</param>
|
||||
<seealso cref="M:DigitalData.Modules.Database.Dispatcher.Create(DigitalData.Modules.Logging.LogConfig,System.String)"/>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.GetDatatable(System.String,System.Int32)">
|
||||
<summary>
|
||||
Returns a Datatable from the database with the specified connection id
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<param name="pConnectionId">The connection id</param>
|
||||
<returns>A datatable with the results or nothing if an error occurred</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.GetDatatable(System.String)">
|
||||
<summary>
|
||||
Returns a Datatable from the database
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<returns>A datatable with the results or nothing if an error occurred</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.ExecuteNonQuery(System.String,System.Int32)">
|
||||
<summary>
|
||||
Executes a query without return value like INSERT or UPDATE from the database with the specified connection id and
|
||||
returns a boolean value indicating success or failure of the query
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<param name="pConnectionId">The connection id</param>
|
||||
<returns>True if the query was successful, otherwise false</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.ExecuteNonQuery(System.String)">
|
||||
<summary>
|
||||
Executes a query without return value like INSERT or UPDATE from the database and
|
||||
returns a boolean value indicating success or failure of the query
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<returns>True if the query was successful, otherwise false</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.GetScalarValue(System.String,System.Int32)">
|
||||
<summary>
|
||||
Returns a single value from the database specified by the connection id
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<param name="pConnectionId">The connection id</param>
|
||||
<returns>A value of type object</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Dispatcher.GetScalarValue(System.String)">
|
||||
<summary>
|
||||
Returns a single value from the database
|
||||
</summary>
|
||||
<param name="pSQLCommand">The SQL query</param>
|
||||
<returns>A value of type object</returns>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Database.Firebird">
|
||||
<summary>
|
||||
MODULE: Firebird
|
||||
|
||||
VERSION: 0.0.0.4
|
||||
|
||||
DATE: 18.12.2018
|
||||
|
||||
DESCRIPTION:
|
||||
|
||||
DEPENDENCIES: NLog, >= 4.5.10
|
||||
|
||||
EntityFramework.Firebird, >= 6.4.0
|
||||
|
||||
FirebirdSql.Data.FirebirdClient, >= 6.4.0
|
||||
|
||||
PARAMETERS: LogConfig, DigitalData.Modules.Logging.LogConfig
|
||||
The LogFactory containing the current log config. Used to instanciate the class logger for this and any dependent class
|
||||
|
||||
DataSource, String
|
||||
The server where the database lives, for example 127.0.0.1 or dd-vmx09-vm03
|
||||
|
||||
Database, String
|
||||
The location of the Database in the format `127.0.0.1:E:\Path\To\Database.FDB`
|
||||
|
||||
User, String
|
||||
The user name to connect as
|
||||
|
||||
Password, String
|
||||
The user's password
|
||||
|
||||
PROPERTIES: ConnectionEstablished, Boolean
|
||||
If the last opened connection was successful
|
||||
|
||||
ConnectionFailed, Boolean
|
||||
If the last opened connection failed
|
||||
|
||||
ConnectionString, String
|
||||
The used connectionstring
|
||||
|
||||
EXAMPLES:
|
||||
|
||||
REMARKS: If the connection fails due to "wrong username or password", the cause might be that the server harddrive is full..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.#ctor(DigitalData.Modules.Logging.LogConfig,System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
|
||||
</summary>
|
||||
<param name="LogConfig">The LogFactory containing the current log config. Used to instanciate the class logger for this and any dependent class</param>
|
||||
<param name="Datasource">The server where the database lives, for example 127.0.0.1 or dd-vmx09-vm03</param>
|
||||
<param name="Database">The location of the Database in the format `127.0.0.1:E:\Path\To\Database.FDB`</param>
|
||||
<param name="User">The user name to connect as</param>
|
||||
<param name="Password">The user's password</param>
|
||||
<exception cref="T:DigitalData.Modules.Database.Exceptions.DatabaseException"></exception>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.GetConnectionString(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Builds a connectionstring from the provided arguments.
|
||||
</summary>
|
||||
<param name="DataSource">The database server where to connect to</param>
|
||||
<param name="Database">The datasource, eg. the path of the FDB-file</param>
|
||||
<param name="User">The user used to connect to the database</param>
|
||||
<param name="Password">The password of the connecting user</param>
|
||||
<returns>A connectionstring</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.ExecuteNonQueryWithConnection(System.String,FirebirdSql.Data.FirebirdClient.FbConnection,DigitalData.Modules.Database.Firebird.TransactionMode,FirebirdSql.Data.FirebirdClient.FbTransaction)">
|
||||
<summary>
|
||||
Executes a non-query command.
|
||||
</summary>
|
||||
<param name="SqlCommand">The command to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>True, if command was executed sucessfully. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.ExecuteNonQuery(System.String)">
|
||||
<summary>
|
||||
Executes a non-query command.
|
||||
</summary>
|
||||
<param name="SqlCommand">The command to execute</param>
|
||||
<returns>True, if command was executed sucessfully. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.ExecuteNonQuery(System.String,FirebirdSql.Data.FirebirdClient.FbTransaction)">
|
||||
<summary>
|
||||
Executes a non-query command inside the specified transaction.
|
||||
</summary>
|
||||
<param name="SqlCommand">The command to execute</param>
|
||||
<returns>True, if command was executed sucessfully. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.GetScalarValueWithConnection(System.String,FirebirdSql.Data.FirebirdClient.FbConnection,DigitalData.Modules.Database.Firebird.TransactionMode,FirebirdSql.Data.FirebirdClient.FbTransaction)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a scalar value.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>The scalar value if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.GetScalarValue(System.String)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a scalar value.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<returns>The scalar value if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.GetDatatableWithConnection(System.String,FirebirdSql.Data.FirebirdClient.FbConnection,DigitalData.Modules.Database.Firebird.TransactionMode,FirebirdSql.Data.FirebirdClient.FbTransaction)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a table of values.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>A datatable containing the results if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Firebird.GetDatatable(System.String,DigitalData.Modules.Database.Firebird.TransactionMode,FirebirdSql.Data.FirebirdClient.FbTransaction)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a table of values.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<returns>A datatable containing the results if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Database.IDatabase.DBInitialized">
|
||||
<summary>
|
||||
Returns true if the initial connection to the configured database was successful.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.ExecuteNonQueryWithConnection(System.String,System.Data.Odbc.OdbcConnection)">
|
||||
<summary>
|
||||
Executes a non-query command.
|
||||
</summary>
|
||||
<param name="SqlQuery">The command to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>True, if command was executed sucessfully. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.ExecuteNonQuery(System.String)">
|
||||
<summary>
|
||||
Executes a non-query command.
|
||||
</summary>
|
||||
<param name="SqlCommand">The command to execute</param>
|
||||
<returns>True, if command was executed sucessfully. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.GetScalarValueWithConnection(System.String,System.Data.Odbc.OdbcConnection)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a scalar value.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>The scalar value if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.GetScalarValue(System.String)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a table of values.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<returns>A datatable containing the results if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.GetDatatableWithConnection(System.String,System.Data.Odbc.OdbcConnection)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a table of values.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<param name="Connection">The Firebird connection to use</param>
|
||||
<returns>A datatable containing the results if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.ODBC.GetDatatable(System.String)">
|
||||
<summary>
|
||||
Executes a sql query resulting in a table of values.
|
||||
</summary>
|
||||
<param name="SqlQuery">The query to execute</param>
|
||||
<returns>A datatable containing the results if the command was executed successfully. Nothing otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Oracle.EncryptConnectionString(System.String)">
|
||||
<summary>
|
||||
Encrypts a connection string password.
|
||||
</summary>
|
||||
<param name="ConnectionString">A connection string with a plain-text password</param>
|
||||
<returns>The connection string with the password encrypted.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Oracle.DecryptConnectionString(System.String)">
|
||||
<summary>
|
||||
Decrypts a connection string password.
|
||||
</summary>
|
||||
<param name="ConnectionString">A connection string with a encrypted password</param>
|
||||
<returns>The connection string with the password decrypted.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Oracle.NewExecutenonQuery(System.String)">
|
||||
<summary>
|
||||
Executes the passed sql-statement
|
||||
</summary>
|
||||
<param name="executeStatement">the sql statement</param>
|
||||
<returns>Returns true if properly executed, else false</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Oracle.NewExecuteScalar(System.String)">
|
||||
<summary>
|
||||
Executes the passed sql-statement as Scalar
|
||||
</summary>
|
||||
<param name="executeStatement">the sql statement</param>
|
||||
<returns>Returns the scalarvalue</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.Oracle.OpenSQLConnection(Oracle.ManagedDataAccess.Client.OracleConnection)">
|
||||
<summary>
|
||||
This Function intentionally has no try..catch block to have any errors caught outside
|
||||
</summary>
|
||||
<param name="Connection"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.EncryptConnectionString(System.String)">
|
||||
<summary>
|
||||
Encrypts a connection string password.
|
||||
</summary>
|
||||
<param name="pConnectionString">A connection string with a plain-text password</param>
|
||||
<returns>The connection string with the password encrypted.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.DecryptConnectionString(System.String)">
|
||||
<summary>
|
||||
Decrypts a connection string password.
|
||||
</summary>
|
||||
<param name="pConnectionString">A connection string with a encrypted password</param>
|
||||
<returns>The connection string with the password decrypted.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.OpenSQLConnection(System.Data.SqlClient.SqlConnection)">
|
||||
<summary>
|
||||
This Function intentionally has no try..catch block to have any errors caught outside
|
||||
</summary>
|
||||
<param name="pConnection"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.GetDatatable(System.String,System.Int32)">
|
||||
<summary>
|
||||
Returns a Datatable for a SQL Statement
|
||||
</summary>
|
||||
<param name="pSqlCommand">SQL Command Text for Datatable (select XYZ from TableORView)</param>
|
||||
<returns>A datatable</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.GetDatatable(System.Data.SqlClient.SqlCommand,System.Int32)">
|
||||
<summary>
|
||||
Returns a datatable for a SQL Statement
|
||||
</summary>
|
||||
<param name="pSqlCommandObject">SQL Command Object for Datatable (select XYZ from TableORView)</param>
|
||||
<returns>A datatable</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Database.MSSQLServer.NewExecuteNonQueryAsync(System.String,System.Int32)">
|
||||
<summary>
|
||||
Executes the passed sql-statement in asyncmode
|
||||
</summary>
|
||||
<param name="SqlCommand">the sql statement</param>
|
||||
<param name="commandtimeout">Optional Timeout</param>
|
||||
<remarks></remarks>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/DigitalData.Modules.Encryption.dll
Normal file
BIN
Interfaces/bin/Debug/DigitalData.Modules.Encryption.dll
Normal file
Binary file not shown.
31
Interfaces/bin/Debug/DigitalData.Modules.Encryption.xml
Normal file
31
Interfaces/bin/Debug/DigitalData.Modules.Encryption.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
DigitalData.Modules.Encryption
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DigitalData.Modules.Encryption.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Encryption.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Encryption.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Encryption.Encryption">
|
||||
<summary>
|
||||
https://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/DigitalData.Modules.Interfaces.dll
Normal file
BIN
Interfaces/bin/Debug/DigitalData.Modules.Interfaces.dll
Normal file
Binary file not shown.
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="FirebirdSql.Data.FirebirdClient" publicKeyToken="3750abcc3150b00c" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-7.5.0.0" newVersion="7.5.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.1.0" newVersion="6.0.1.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.4.0" newVersion="4.0.4.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.5.0" newVersion="4.1.5.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Security.Cryptography.Pkcs" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.1" newVersion="8.0.0.1" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.IO.Packaging" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.1" newVersion="8.0.0.1" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-8.0.0.5" newVersion="8.0.0.5" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2" /></startup></configuration>
|
||||
99978
Interfaces/bin/Debug/DigitalData.Modules.Interfaces.xml
Normal file
99978
Interfaces/bin/Debug/DigitalData.Modules.Interfaces.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/DigitalData.Modules.Logging.dll
Normal file
BIN
Interfaces/bin/Debug/DigitalData.Modules.Logging.dll
Normal file
Binary file not shown.
200
Interfaces/bin/Debug/DigitalData.Modules.Logging.xml
Normal file
200
Interfaces/bin/Debug/DigitalData.Modules.Logging.xml
Normal file
@@ -0,0 +1,200 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
DigitalData.Modules.Logging
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:DigitalData.Modules.Logging.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:DigitalData.Modules.Logging.LogConfig">
|
||||
<module>LogConfig</module>
|
||||
<version>0.0.1.0</version>
|
||||
<date>02.10.2018</date>
|
||||
<summary>
|
||||
Module that writes file-logs to different locations:
|
||||
local application data, the current directory or a custom path.
|
||||
Files and directories will be automatically created.
|
||||
</summary>
|
||||
<dependencies>
|
||||
NLog, >= 4.5.8
|
||||
</dependencies>
|
||||
<example>
|
||||
Imports DigitalData.Modules.Logging
|
||||
|
||||
Class FooProgram
|
||||
Private Logger as Logger
|
||||
Private LogConfig as LogConfig
|
||||
|
||||
Public Sub New()
|
||||
LogConfig = new LogConfig(args)
|
||||
Logger = LogConfig.GetLogger()
|
||||
End Sub
|
||||
|
||||
Public Sub Bar()
|
||||
Logger.Info("Baz")
|
||||
End Sub
|
||||
End Class
|
||||
|
||||
Class FooLib
|
||||
Private Logger as NLog.Logger
|
||||
|
||||
Public Sub New(LogConfig as LogConfig)
|
||||
Logger = LogConfig.GetLogger()
|
||||
End Sub
|
||||
|
||||
Public Sub Bar()
|
||||
Logger.Info("Baz")
|
||||
End Sub
|
||||
End Class
|
||||
</example>
|
||||
<remarks>
|
||||
If logpath can not be written to, falls back to temp folder as defined in:
|
||||
https://docs.microsoft.com/de-de/dotnet/api/system.io.path.gettemppath?view=netframework-4.7.2
|
||||
|
||||
If used in a service, LogPath must be set to CustomPath, otherwise the Log will be written to System32!
|
||||
|
||||
For NLog Troubleshooting, set the following Environment variables to write the NLog internal Log:
|
||||
- NLOG_INTERNAL_LOG_LEVEL: Debug
|
||||
- NLOG_INTERNAL_LOG_FILE: ex. C:\Temp\Nlog_Internal.log
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogFactory">
|
||||
<summary>
|
||||
Returns the NLog.LogFactory object that is used to create Loggers
|
||||
</summary>
|
||||
<returns>LogFactory object</returns>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogFile">
|
||||
<summary>
|
||||
Returns the path to the current default logfile
|
||||
</summary>
|
||||
<returns>Filepath to the logfile</returns>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogDirectory">
|
||||
<summary>
|
||||
Returns the path to the current log directory
|
||||
</summary>
|
||||
<returns>Directory path to the log directory</returns>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.LogConfig.Debug">
|
||||
<summary>
|
||||
Determines if a debug log will be written
|
||||
</summary>
|
||||
<returns>True, if debug log will be written. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="P:DigitalData.Modules.Logging.LogConfig.Logs">
|
||||
<summary>
|
||||
Returns Logs in Memory as List(Of String) if Debug is enabled
|
||||
Returns an empty list if debug is disabled
|
||||
</summary>
|
||||
<returns>A list of log messages</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.#ctor(DigitalData.Modules.Logging.LogOptions)">
|
||||
<summary>
|
||||
Initializes a new LogConfig object with the options supplied as a LogOptions object
|
||||
</summary>
|
||||
<param name="Options"></param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.#ctor(DigitalData.Modules.Logging.LogConfig.PathType,System.String,System.String,System.String,System.String,System.Int32)">
|
||||
<summary>
|
||||
Initializes a new LogConfig object with a logpath and optinally a filename-suffix.
|
||||
</summary>
|
||||
<param name="LogPath">The basepath to write logs to. Can be AppData, CurrentDirectory or CustomPath.</param>
|
||||
<param name="CustomLogPath">If `logPath` is set to custom, this defines the custom logPath.</param>
|
||||
<param name="Suffix">If set to anything other than Nothing, extends the logfile name with this suffix.</param>
|
||||
<param name="CompanyName">CompanyName is used to construct log-path in when LogPath is set to PathType:AppData</param>
|
||||
<param name="ProductName">ProductName is used to construct log-path in when LogPath is set to PathType:AppData</param>
|
||||
<param name="FileKeepRangeInDays">Amount of days where files are kept and not deleted.</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.ClearOldLogfiles(System.Int32)">
|
||||
<summary>
|
||||
Clears old LogFiles from the configured logpath for compliance with the GDPR
|
||||
</summary>
|
||||
<param name="FileKeepRange">Days in which logfiles should be kept. All files older than `Now - FileKeepInterval` will be deleted.</param>
|
||||
<returns>True, if files were deleted as expected or no files were deleted. Otherwise false.</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLogger">
|
||||
<summary>
|
||||
Returns the Logger for the calling class
|
||||
</summary>
|
||||
<returns>An object of Logging.Logger</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLogger(System.String)">
|
||||
<summary>
|
||||
Returns the Logger for the specified classname
|
||||
</summary>
|
||||
<returns>An object of Logging.Logger</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLoggerFor(System.String)">
|
||||
<summary>
|
||||
Returns the Logger for the specified module using event-properties
|
||||
</summary>
|
||||
<remarks>
|
||||
https://github.com/NLog/NLog/wiki/EventProperties-Layout-Renderer
|
||||
https://stackoverflow.com/questions/31337030/separate-log-file-for-specific-class-instance-using-nlog/32065824#32065824
|
||||
</remarks>
|
||||
<returns>An object of Logging.Logger</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLogger(System.String,System.String)">
|
||||
<summary>
|
||||
Returns the Logger for a class specified by `ClassName`
|
||||
</summary>
|
||||
<param name="ClassName">The name of the class the logger belongs to</param>
|
||||
<returns>An object of Logging.Logger</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.ClearLogs">
|
||||
<summary>
|
||||
Clears the internal log
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetClassFullName(System.Boolean,System.Int32)">
|
||||
<summary>
|
||||
Gets the fully qualified name of the class invoking the calling method,
|
||||
including the namespace but Not the assembly.
|
||||
</summary>
|
||||
<returns>The fully qualified class name</returns>
|
||||
<remarks>This method is very resource-intensive!</remarks>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetConfig(System.String,System.String)">
|
||||
<summary>
|
||||
Returns the initial log configuration
|
||||
</summary>
|
||||
<param name="productName">The chosen productname</param>
|
||||
<param name="logFileSuffix">The chosen suffix</param>
|
||||
<returns>A NLog.LoggingConfiguration object</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.AddDefaultRules(NLog.Config.LoggingConfiguration@)">
|
||||
<summary>
|
||||
Adds the default rules
|
||||
</summary>
|
||||
<param name="config">A NLog.LoggingConfiguration object</param>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetCurrentLogFilePath">
|
||||
<summary>
|
||||
Returns the full path of the current default log file.
|
||||
</summary>
|
||||
<returns>Full path of the current default log file</returns>
|
||||
</member>
|
||||
<member name="M:DigitalData.Modules.Logging.LogConfig.ReloadConfig">
|
||||
<summary>
|
||||
Reconfigures and re-adds all loggers, optionally adding the debug rule.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/DocumentFormat.OpenXml.Framework.dll
Normal file
BIN
Interfaces/bin/Debug/DocumentFormat.OpenXml.Framework.dll
Normal file
Binary file not shown.
9349
Interfaces/bin/Debug/DocumentFormat.OpenXml.Framework.xml
Normal file
9349
Interfaces/bin/Debug/DocumentFormat.OpenXml.Framework.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/DocumentFormat.OpenXml.dll
Normal file
BIN
Interfaces/bin/Debug/DocumentFormat.OpenXml.dll
Normal file
Binary file not shown.
257643
Interfaces/bin/Debug/DocumentFormat.OpenXml.xml
Normal file
257643
Interfaces/bin/Debug/DocumentFormat.OpenXml.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/FirebirdSql.Data.FirebirdClient.dll
Normal file
BIN
Interfaces/bin/Debug/FirebirdSql.Data.FirebirdClient.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.CAD.DWG.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.CAD.DWG.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.CAD.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.CAD.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Common.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Common.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Document.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Document.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Email.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Email.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.HTML.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.HTML.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Formats.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Formats.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.ML.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.ML.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.ML.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.ML.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Rendering.Skia.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Rendering.Skia.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Rendering.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.Rendering.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.dll
Normal file
Binary file not shown.
12241
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.xml
Normal file
12241
Interfaces/bin/Debug/GdPicture.NET.14.Imaging.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/GdPicture.NET.14.MSOfficeBinary.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.MSOfficeBinary.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenDocument.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenDocument.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenXML.Templating.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenXML.Templating.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenXML.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.OpenXML.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.PDF.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.PDF.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.RTF.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.RTF.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.SVG.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.SVG.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.reader.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.reader.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.reader.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.reader.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.writer.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.1d.writer.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.reader.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.reader.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.reader.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.reader.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.writer.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.barcode.2d.writer.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.filters.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.filters.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.filters.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.filters.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.image.gdimgplug.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.image.gdimgplug.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.image.gdimgplug.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.image.gdimgplug.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.machine.vision.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.machine.vision.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.machine.vision.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.machine.vision.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.twain.client.64.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.twain.client.64.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/GdPicture.NET.14.twain.client.dll
Normal file
BIN
Interfaces/bin/Debug/GdPicture.NET.14.twain.client.dll
Normal file
Binary file not shown.
184342
Interfaces/bin/Debug/GdPicture.NET.14.xml
Normal file
184342
Interfaces/bin/Debug/GdPicture.NET.14.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll
Normal file
BIN
Interfaces/bin/Debug/Microsoft.Bcl.AsyncInterfaces.dll
Normal file
Binary file not shown.
417
Interfaces/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
Normal file
417
Interfaces/bin/Debug/Microsoft.Bcl.AsyncInterfaces.xml
Normal file
@@ -0,0 +1,417 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Bcl.AsyncInterfaces</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1">
|
||||
<summary>Provides the core logic for implementing a manual-reset <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource"/> or <see cref="T:System.Threading.Tasks.Sources.IValueTaskSource`1"/>.</summary>
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuation">
|
||||
<summary>
|
||||
The callback to invoke when the operation completes if <see cref="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)"/> was called before the operation completed,
|
||||
or <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCoreShared.s_sentinel"/> if the operation completed before a callback was supplied,
|
||||
or null if a callback hasn't yet been provided and the operation hasn't yet completed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuationState">
|
||||
<summary>State to pass to <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._continuation"/>.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._executionContext">
|
||||
<summary><see cref="T:System.Threading.ExecutionContext"/> to flow to the callback, or null if no flowing is required.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._capturedContext">
|
||||
<summary>
|
||||
A "captured" <see cref="T:System.Threading.SynchronizationContext"/> or <see cref="T:System.Threading.Tasks.TaskScheduler"/> with which to invoke the callback,
|
||||
or null if no special context is required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._completed">
|
||||
<summary>Whether the current operation has completed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._result">
|
||||
<summary>The result with which the operation succeeded, or the default value if it hasn't yet completed or failed.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._error">
|
||||
<summary>The exception with which the operation failed, or null if it hasn't yet completed or completed successfully.</summary>
|
||||
</member>
|
||||
<member name="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._version">
|
||||
<summary>The current version of this value, used to help prevent misuse.</summary>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.RunContinuationsAsynchronously">
|
||||
<summary>Gets or sets whether to force continuations to run asynchronously.</summary>
|
||||
<remarks>Continuations may run asynchronously if this is false, but they'll never run synchronously if this is true.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Reset">
|
||||
<summary>Resets to prepare for the next operation.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetResult(`0)">
|
||||
<summary>Completes with a successful result.</summary>
|
||||
<param name="result">The result.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SetException(System.Exception)">
|
||||
<summary>Complets with an error.</summary>
|
||||
<param name="error"></param>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.Version">
|
||||
<summary>Gets the operation version.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetStatus(System.Int16)">
|
||||
<summary>Gets the status of the operation.</summary>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.GetResult(System.Int16)">
|
||||
<summary>Gets the result of the operation.</summary>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.OnCompleted(System.Action{System.Object},System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags)">
|
||||
<summary>Schedules the continuation action for this operation.</summary>
|
||||
<param name="continuation">The continuation to invoke when the operation has completed.</param>
|
||||
<param name="state">The state object to pass to <paramref name="continuation"/> when it's invoked.</param>
|
||||
<param name="token">Opaque value that was provided to the <see cref="T:System.Threading.Tasks.ValueTask"/>'s constructor.</param>
|
||||
<param name="flags">The flags describing the behavior of the continuation.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.ValidateToken(System.Int16)">
|
||||
<summary>Ensures that the specified token matches the current version.</summary>
|
||||
<param name="token">The token supplied by <see cref="T:System.Threading.Tasks.ValueTask"/>.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.SignalCompletion">
|
||||
<summary>Signals that the operation has completed. Invoked after the result or error has been set.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1.InvokeContinuation">
|
||||
<summary>
|
||||
Invokes the continuation with the appropriate captured context / scheduler.
|
||||
This assumes that if <see cref="F:System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore`1._executionContext"/> is not null we're already
|
||||
running within that <see cref="T:System.Threading.ExecutionContext"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Threading.Tasks.TaskAsyncEnumerableExtensions">
|
||||
<summary>Provides a set of static methods for configuring <see cref="T:System.Threading.Tasks.Task"/>-related behaviors on asynchronous enumerables and disposables.</summary>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait(System.IAsyncDisposable,System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async disposable will be performed.</summary>
|
||||
<param name="source">The source async disposable.</param>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured async disposable.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.ConfigureAwait``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async iteration will be performed.</summary>
|
||||
<typeparam name="T">The type of the objects being iterated.</typeparam>
|
||||
<param name="source">The source enumerable being iterated.</param>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.TaskAsyncEnumerableExtensions.WithCancellation``1(System.Collections.Generic.IAsyncEnumerable{``0},System.Threading.CancellationToken)">
|
||||
<summary>Sets the <see cref="T:System.Threading.CancellationToken"/> to be passed to <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)"/> when iterating.</summary>
|
||||
<typeparam name="T">The type of the objects being iterated.</typeparam>
|
||||
<param name="source">The source enumerable being iterated.</param>
|
||||
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/> to use.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder">
|
||||
<summary>Represents a builder for asynchronous iterators.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Create">
|
||||
<summary>Creates an instance of the <see cref="T:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder"/> struct.</summary>
|
||||
<returns>The initialized instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.MoveNext``1(``0@)">
|
||||
<summary>Invokes <see cref="M:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext"/> on the state machine while guarding the <see cref="T:System.Threading.ExecutionContext"/>.</summary>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="stateMachine">The state machine instance, passed by reference.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitOnCompleted``2(``0@,``1@)">
|
||||
<summary>Schedules the state machine to proceed to the next action when the specified awaiter completes.</summary>
|
||||
<typeparam name="TAwaiter">The type of the awaiter.</typeparam>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="awaiter">The awaiter.</param>
|
||||
<param name="stateMachine">The state machine.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted``2(``0@,``1@)">
|
||||
<summary>Schedules the state machine to proceed to the next action when the specified awaiter completes.</summary>
|
||||
<typeparam name="TAwaiter">The type of the awaiter.</typeparam>
|
||||
<typeparam name="TStateMachine">The type of the state machine.</typeparam>
|
||||
<param name="awaiter">The awaiter.</param>
|
||||
<param name="stateMachine">The state machine.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.Complete">
|
||||
<summary>Marks iteration as being completed, whether successfully or otherwise.</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncIteratorMethodBuilder.ObjectIdForDebugger">
|
||||
<summary>Gets an object that may be used to uniquely identify this builder to the debugger.</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute">
|
||||
<summary>Indicates whether a method is an asynchronous iterator.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute.#ctor(System.Type)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute"/> class.</summary>
|
||||
<param name="stateMachineType">The type object for the underlying state machine type that's used to implement a state machine method.</param>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable">
|
||||
<summary>Provides a type that can be used to configure how awaits on an <see cref="T:System.IAsyncDisposable"/> are performed.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredAsyncDisposable.DisposeAsync">
|
||||
<summary>Asynchronously releases the unmanaged resources used by the <see cref="T:System.Runtime.CompilerServices.ConfiguredAsyncDisposable" />.</summary>
|
||||
<returns>A task that represents the asynchronous dispose operation.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1">
|
||||
<summary>Provides an awaitable async enumerable that enables cancelable iteration and configured awaits.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean)">
|
||||
<summary>Configures how awaits on the tasks returned from an async iteration will be performed.</summary>
|
||||
<param name="continueOnCapturedContext">Whether to capture and marshal back to the current context.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
<remarks>This will replace any previous value set by <see cref="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.ConfigureAwait(System.Boolean)"/> for this iteration.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken)">
|
||||
<summary>Sets the <see cref="T:System.Threading.CancellationToken"/> to be passed to <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)"/> when iterating.</summary>
|
||||
<param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/> to use.</param>
|
||||
<returns>The configured enumerable.</returns>
|
||||
<remarks>This will replace any previous <see cref="T:System.Threading.CancellationToken"/> set by <see cref="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.WithCancellation(System.Threading.CancellationToken)"/> for this iteration.</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.GetAsyncEnumerator">
|
||||
<summary>Returns an enumerator that iterates asynchronously through collections that enables cancelable iteration and configured awaits.</summary>
|
||||
<returns>An enumerator for the <see cref="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1" /> class.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator">
|
||||
<summary>Provides an awaitable async enumerator that enables cancelable iteration and configured awaits.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.MoveNextAsync">
|
||||
<summary>Advances the enumerator asynchronously to the next element of the collection.</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1"/> that will complete with a result of <c>true</c>
|
||||
if the enumerator was successfully advanced to the next element, or <c>false</c> if the enumerator has
|
||||
passed the end of the collection.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable`1.Enumerator.DisposeAsync">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or
|
||||
resetting unmanaged resources asynchronously.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute">
|
||||
<summary>Allows users of async-enumerable methods to mark the parameter that should receive the cancellation token value from <see cref="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)" />.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.EnumeratorCancellationAttribute.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.EnumeratorCancellationAttribute" /> class.</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.InteropServices.LibraryImportAttribute">
|
||||
<summary>
|
||||
Attribute used to indicate a source generator should create a function for marshalling
|
||||
arguments instead of relying on the runtime to generate an equivalent marshalling function at run-time.
|
||||
</summary>
|
||||
<remarks>
|
||||
This attribute is meaningless if the source generator associated with it is not enabled.
|
||||
The current built-in source generator only supports C# and only supplies an implementation when
|
||||
applied to static, partial, non-generic methods.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:System.Runtime.InteropServices.LibraryImportAttribute.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.LibraryImportAttribute"/>.
|
||||
</summary>
|
||||
<param name="libraryName">Name of the library containing the import.</param>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.LibraryName">
|
||||
<summary>
|
||||
Gets the name of the library containing the import.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.EntryPoint">
|
||||
<summary>
|
||||
Gets or sets the name of the entry point to be called.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling">
|
||||
<summary>
|
||||
Gets or sets how to marshal string arguments to the method.
|
||||
</summary>
|
||||
<remarks>
|
||||
If this field is set to a value other than <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />,
|
||||
<see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType" /> must not be specified.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType">
|
||||
<summary>
|
||||
Gets or sets the <see cref="T:System.Type"/> used to control how string arguments to the method are marshalled.
|
||||
</summary>
|
||||
<remarks>
|
||||
If this field is specified, <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshalling" /> must not be specified
|
||||
or must be set to <see cref="F:System.Runtime.InteropServices.StringMarshalling.Custom" />.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="P:System.Runtime.InteropServices.LibraryImportAttribute.SetLastError">
|
||||
<summary>
|
||||
Gets or sets whether the callee sets an error (SetLastError on Windows or errno
|
||||
on other platforms) before returning from the attributed method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Runtime.InteropServices.StringMarshalling">
|
||||
<summary>
|
||||
Specifies how strings should be marshalled for generated p/invokes
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Custom">
|
||||
<summary>
|
||||
Indicates the user is suppling a specific marshaller in <see cref="P:System.Runtime.InteropServices.LibraryImportAttribute.StringMarshallingCustomType"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf8">
|
||||
<summary>
|
||||
Use the platform-provided UTF-8 marshaller.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Runtime.InteropServices.StringMarshalling.Utf16">
|
||||
<summary>
|
||||
Use the platform-provided UTF-16 marshaller.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Collections.Generic.IAsyncEnumerable`1">
|
||||
<summary>Exposes an enumerator that provides asynchronous iteration over values of a specified type.</summary>
|
||||
<typeparam name="T">The type of values to enumerate.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Collections.Generic.IAsyncEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)">
|
||||
<summary>Returns an enumerator that iterates asynchronously through the collection.</summary>
|
||||
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken"/> that may be used to cancel the asynchronous iteration.</param>
|
||||
<returns>An enumerator that can be used to iterate asynchronously through the collection.</returns>
|
||||
</member>
|
||||
<member name="T:System.Collections.Generic.IAsyncEnumerator`1">
|
||||
<summary>Supports a simple asynchronous iteration over a generic collection.</summary>
|
||||
<typeparam name="T">The type of objects to enumerate.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Collections.Generic.IAsyncEnumerator`1.MoveNextAsync">
|
||||
<summary>Advances the enumerator asynchronously to the next element of the collection.</summary>
|
||||
<returns>
|
||||
A <see cref="T:System.Threading.Tasks.ValueTask`1"/> that will complete with a result of <c>true</c> if the enumerator
|
||||
was successfully advanced to the next element, or <c>false</c> if the enumerator has passed the end
|
||||
of the collection.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="P:System.Collections.Generic.IAsyncEnumerator`1.Current">
|
||||
<summary>Gets the element in the collection at the current position of the enumerator.</summary>
|
||||
</member>
|
||||
<member name="T:System.IAsyncDisposable">
|
||||
<summary>Provides a mechanism for releasing unmanaged resources asynchronously.</summary>
|
||||
</member>
|
||||
<member name="M:System.IAsyncDisposable.DisposeAsync">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or
|
||||
resetting unmanaged resources asynchronously.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.AllowNullAttribute">
|
||||
<summary>Specifies that null is allowed as an input even if the corresponding type disallows it.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.DisallowNullAttribute">
|
||||
<summary>Specifies that null is disallowed as an input even if the corresponding type allows it.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.MaybeNullAttribute">
|
||||
<summary>Specifies that an output may be null even if the corresponding type disallows it.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.NotNullAttribute">
|
||||
<summary>Specifies that an output will not be null even if the corresponding type allows it. Specifies that an input argument was not null when the call returns.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute">
|
||||
<summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue"/>, the parameter may be null even if the corresponding type disallows it.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.#ctor(System.Boolean)">
|
||||
<summary>Initializes the attribute with the specified return value condition.</summary>
|
||||
<param name="returnValue">
|
||||
The return value condition. If the method returns this value, the associated parameter may be null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute.ReturnValue">
|
||||
<summary>Gets the return value condition.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute">
|
||||
<summary>Specifies that when a method returns <see cref="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue"/>, the parameter will not be null even if the corresponding type allows it.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.#ctor(System.Boolean)">
|
||||
<summary>Initializes the attribute with the specified return value condition.</summary>
|
||||
<param name="returnValue">
|
||||
The return value condition. If the method returns this value, the associated parameter will not be null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.NotNullWhenAttribute.ReturnValue">
|
||||
<summary>Gets the return value condition.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute">
|
||||
<summary>Specifies that the output will be non-null if the named parameter is non-null.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.#ctor(System.String)">
|
||||
<summary>Initializes the attribute with the associated parameter name.</summary>
|
||||
<param name="parameterName">
|
||||
The associated parameter name. The output will be non-null if the argument to the parameter specified is non-null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.NotNullIfNotNullAttribute.ParameterName">
|
||||
<summary>Gets the associated parameter name.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnAttribute">
|
||||
<summary>Applied to a method that will never return under any circumstance.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute">
|
||||
<summary>Specifies that the method will not return if the associated Boolean parameter is passed the specified value.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.#ctor(System.Boolean)">
|
||||
<summary>Initializes the attribute with the specified parameter value.</summary>
|
||||
<param name="parameterValue">
|
||||
The condition parameter value. Code after the method will be considered unreachable by diagnostics if the argument to
|
||||
the associated parameter matches this value.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.DoesNotReturnIfAttribute.ParameterValue">
|
||||
<summary>Gets the condition parameter value.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute">
|
||||
<summary>Specifies that the method or property will ensure that the listed field and property members have not-null values.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String)">
|
||||
<summary>Initializes the attribute with a field or property member.</summary>
|
||||
<param name="member">
|
||||
The field or property member that is promised to be not-null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.#ctor(System.String[])">
|
||||
<summary>Initializes the attribute with the list of field and property members.</summary>
|
||||
<param name="members">
|
||||
The list of field and property members that are promised to be not-null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullAttribute.Members">
|
||||
<summary>Gets field or property member names.</summary>
|
||||
</member>
|
||||
<member name="T:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute">
|
||||
<summary>Specifies that the method or property will ensure that the listed field and property members have not-null values when returning with the specified return value condition.</summary>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String)">
|
||||
<summary>Initializes the attribute with the specified return value condition and a field or property member.</summary>
|
||||
<param name="returnValue">
|
||||
The return value condition. If the method returns this value, the associated parameter will not be null.
|
||||
</param>
|
||||
<param name="member">
|
||||
The field or property member that is promised to be not-null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="M:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.#ctor(System.Boolean,System.String[])">
|
||||
<summary>Initializes the attribute with the specified return value condition and list of field and property members.</summary>
|
||||
<param name="returnValue">
|
||||
The return value condition. If the method returns this value, the associated parameter will not be null.
|
||||
</param>
|
||||
<param name="members">
|
||||
The list of field and property members that are promised to be not-null.
|
||||
</param>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.ReturnValue">
|
||||
<summary>Gets the return value condition.</summary>
|
||||
</member>
|
||||
<member name="P:System.Diagnostics.CodeAnalysis.MemberNotNullWhenAttribute.Members">
|
||||
<summary>Gets field or property member names.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/Microsoft.Win32.Primitives.dll
Normal file
BIN
Interfaces/bin/Debug/Microsoft.Win32.Primitives.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/Microsoft.Win32.Registry.dll
Normal file
BIN
Interfaces/bin/Debug/Microsoft.Win32.Registry.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/NLog.dll
Normal file
BIN
Interfaces/bin/Debug/NLog.dll
Normal file
Binary file not shown.
28265
Interfaces/bin/Debug/NLog.xml
Normal file
28265
Interfaces/bin/Debug/NLog.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/Newtonsoft.Json.Bson.dll
Normal file
BIN
Interfaces/bin/Debug/Newtonsoft.Json.Bson.dll
Normal file
Binary file not shown.
545
Interfaces/bin/Debug/Newtonsoft.Json.Bson.xml
Normal file
545
Interfaces/bin/Debug/Newtonsoft.Json.Bson.xml
Normal file
@@ -0,0 +1,545 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Newtonsoft.Json.Bson</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Newtonsoft.Json.Bson.BsonDataObjectId">
|
||||
<summary>
|
||||
Represents a BSON Oid (object id).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Bson.BsonDataObjectId.Value">
|
||||
<summary>
|
||||
Gets or sets the value of the Oid.
|
||||
</summary>
|
||||
<value>The value of the Oid.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataObjectId.#ctor(System.Byte[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataObjectId"/> class.
|
||||
</summary>
|
||||
<param name="value">The Oid value.</param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Bson.BsonDataReader">
|
||||
<summary>
|
||||
Represents a reader that provides fast, non-cached, forward-only access to serialized BSON data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns <c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsBooleanAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.Boolean" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsBytesAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Byte" />[].
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Byte" />[]. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsDateTimeAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTime" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsDateTimeOffsetAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.DateTimeOffset" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsDecimalAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.Decimal" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsDoubleAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.Double" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsInt32Async(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.Nullable`1" /> of <see cref="T:System.Int32" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.ReadAsStringAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously reads the next JSON token from the source as a <see cref="T:System.String" />.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> that represents the asynchronous read. The <see cref="P:System.Threading.Tasks.Task`1.Result" />
|
||||
property returns the <see cref="T:System.String" />. This result will be <c>null</c> at the end of an array.</returns>
|
||||
<remarks>Derived classes must override this method to get asynchronous behaviour. Otherwise it will
|
||||
execute synchronously, returning an already-completed task. Asynchronous behaviour is also not available when the
|
||||
constructor was passed an instance of type derived from <see cref="T:System.IO.BinaryReader"/>.</remarks>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Bson.BsonDataReader.JsonNet35BinaryCompatibility">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether binary data reading should be compatible with incorrect Json.NET 3.5 written binary.
|
||||
</summary>
|
||||
<value>
|
||||
<c>true</c> if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, <c>false</c>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Bson.BsonDataReader.ReadRootValueAsArray">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether the root object will be read as a JSON array.
|
||||
</summary>
|
||||
<value>
|
||||
<c>true</c> if the root object will be read as a JSON array; otherwise, <c>false</c>.
|
||||
</value>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Bson.BsonDataReader.DateTimeKindHandling">
|
||||
<summary>
|
||||
Gets or sets the <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.
|
||||
</summary>
|
||||
<value>The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.#ctor(System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataReader"/> class.
|
||||
</summary>
|
||||
<param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.#ctor(System.IO.BinaryReader)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.#ctor(System.IO.Stream,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataReader"/> class.
|
||||
</summary>
|
||||
<param name="stream">The <see cref="T:System.IO.Stream"/> containing the BSON data to read.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.#ctor(System.IO.BinaryReader,System.Boolean,System.DateTimeKind)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataReader"/> class.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:System.IO.BinaryReader"/> containing the BSON data to read.</param>
|
||||
<param name="readRootValueAsArray">if set to <c>true</c> the root object will be read as a JSON array.</param>
|
||||
<param name="dateTimeKindHandling">The <see cref="T:System.DateTimeKind" /> used when reading <see cref="T:System.DateTime"/> values from BSON.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.Read">
|
||||
<summary>
|
||||
Reads the next JSON token from the underlying <see cref="T:System.IO.Stream"/>.
|
||||
</summary>
|
||||
<returns>
|
||||
<c>true</c> if the next token was read successfully; <c>false</c> if there are no more tokens to read.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataReader.Close">
|
||||
<summary>
|
||||
Changes the reader's state to <see cref="F:Newtonsoft.Json.JsonReader.State.Closed"/>.
|
||||
If <see cref="P:Newtonsoft.Json.JsonReader.CloseInput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Bson.BsonDataWriter">
|
||||
<summary>
|
||||
Represents a writer that provides a fast, non-cached, forward-only way of generating BSON data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously flushes whatever is in the buffer to the destination and also flushes the destination.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
|
||||
<remarks>Because BSON documents are written as a single unit, only <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)"/> and the final <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)"/> or <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)"/>
|
||||
that finishes writing the document will write asynchronously. Derived classes will not write asynchronously.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously writes the end of the current JSON object or array.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
|
||||
<remarks>Because BSON documents are written as a single unit, only <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)"/> and the final <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)"/> or <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)"/>
|
||||
that finishes writing the document will write asynchronously. Derived classes will not write asynchronously.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously writes the end of an array.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
|
||||
<remarks>Because BSON documents are written as a single unit, only <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)"/> and the final <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)"/> or <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)"/>
|
||||
that finishes writing the document will write asynchronously. Derived classes will not write asynchronously.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously writes the end of a JSON object.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
|
||||
<remarks>Because BSON documents are written as a single unit, only <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)"/> and the final <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)"/> or <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)"/>
|
||||
that finishes writing the document will write asynchronously. Derived classes will not write asynchronously.</remarks>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)">
|
||||
<summary>
|
||||
Asynchronously closes this writer.
|
||||
If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the destination is also closed.
|
||||
</summary>
|
||||
<param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None"/>.</param>
|
||||
<returns>A <see cref="T:System.Threading.Tasks.Task"/> that represents the asynchronous operation.</returns>
|
||||
<remarks>Because BSON documents are written as a single unit, only <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.FlushAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.CloseAsync(System.Threading.CancellationToken)"/> and the final <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndAsync(System.Threading.CancellationToken)"/>,
|
||||
<see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndArrayAsync(System.Threading.CancellationToken)"/> or <see cref="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEndObjectAsync(System.Threading.CancellationToken)"/>
|
||||
that finishes writing the document will write asynchronously. Derived classes will not write asynchronously.</remarks>
|
||||
</member>
|
||||
<member name="P:Newtonsoft.Json.Bson.BsonDataWriter.DateTimeKindHandling">
|
||||
<summary>
|
||||
Gets or sets the <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.
|
||||
When set to <see cref="F:System.DateTimeKind.Unspecified" /> no conversion will occur.
|
||||
</summary>
|
||||
<value>The <see cref="T:System.DateTimeKind" /> used when writing <see cref="T:System.DateTime"/> values to BSON.</value>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.#ctor(System.IO.Stream)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataWriter"/> class.
|
||||
</summary>
|
||||
<param name="stream">The <see cref="T:System.IO.Stream"/> to write to.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.#ctor(System.IO.BinaryWriter)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Newtonsoft.Json.Bson.BsonDataWriter"/> class.
|
||||
</summary>
|
||||
<param name="writer">The <see cref="T:System.IO.BinaryWriter"/> to write to.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.Flush">
|
||||
<summary>
|
||||
Flushes whatever is in the buffer to the underlying <see cref="T:System.IO.Stream"/> and also flushes the underlying stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteEnd(Newtonsoft.Json.JsonToken)">
|
||||
<summary>
|
||||
Writes the end.
|
||||
</summary>
|
||||
<param name="token">The token.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteComment(System.String)">
|
||||
<summary>
|
||||
Writes a comment <c>/*...*/</c> containing the specified text.
|
||||
</summary>
|
||||
<param name="text">Text to place inside the comment.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteStartConstructor(System.String)">
|
||||
<summary>
|
||||
Writes the start of a constructor with the given name.
|
||||
</summary>
|
||||
<param name="name">The name of the constructor.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteRaw(System.String)">
|
||||
<summary>
|
||||
Writes raw JSON.
|
||||
</summary>
|
||||
<param name="json">The raw JSON to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteRawValue(System.String)">
|
||||
<summary>
|
||||
Writes raw JSON where a value is expected and updates the writer's state.
|
||||
</summary>
|
||||
<param name="json">The raw JSON to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteStartArray">
|
||||
<summary>
|
||||
Writes the beginning of a JSON array.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteStartObject">
|
||||
<summary>
|
||||
Writes the beginning of a JSON object.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WritePropertyName(System.String)">
|
||||
<summary>
|
||||
Writes the property name of a name/value pair on a JSON object.
|
||||
</summary>
|
||||
<param name="name">The name of the property.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.Close">
|
||||
<summary>
|
||||
Closes this writer.
|
||||
If <see cref="P:Newtonsoft.Json.JsonWriter.CloseOutput"/> is set to <c>true</c>, the underlying <see cref="T:System.IO.Stream"/> is also closed.
|
||||
If <see cref="P:Newtonsoft.Json.JsonWriter.AutoCompleteOnClose"/> is set to <c>true</c>, the JSON is auto-completed.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Object)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Object"/> value.
|
||||
An error will raised if the value cannot be written as a single JSON token.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Object"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteNull">
|
||||
<summary>
|
||||
Writes a null value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteUndefined">
|
||||
<summary>
|
||||
Writes an undefined value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.String)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.String"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.String"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Int32)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Int32"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Int32"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.UInt32)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.UInt32"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.UInt32"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Int64)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Int64"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Int64"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.UInt64)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.UInt64"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.UInt64"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Single)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Single"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Single"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Double)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Double"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Double"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Boolean)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Boolean"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Boolean"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Int16)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Int16"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Int16"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.UInt16)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.UInt16"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.UInt16"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Char)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Char"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Char"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Byte)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Byte"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Byte"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.SByte)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.SByte"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.SByte"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Decimal)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Decimal"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Decimal"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.DateTime)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.DateTime"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.DateTime"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.DateTimeOffset)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.DateTimeOffset"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.DateTimeOffset"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Byte[])">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Byte"/>[] value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Byte"/>[] value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Guid)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Guid"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Guid"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.TimeSpan)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.TimeSpan"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.TimeSpan"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteValue(System.Uri)">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Uri"/> value.
|
||||
</summary>
|
||||
<param name="value">The <see cref="T:System.Uri"/> value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteObjectId(System.Byte[])">
|
||||
<summary>
|
||||
Writes a <see cref="T:System.Byte"/>[] value that represents a BSON object id.
|
||||
</summary>
|
||||
<param name="value">The Object ID value to write.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.BsonDataWriter.WriteRegex(System.String,System.String)">
|
||||
<summary>
|
||||
Writes a BSON regex.
|
||||
</summary>
|
||||
<param name="pattern">The regex pattern.</param>
|
||||
<param name="options">The regex options.</param>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Bson.Converters.BsonDataObjectIdConverter">
|
||||
<summary>
|
||||
Converts a <see cref="T:Newtonsoft.Json.Bson.BsonDataObjectId"/> to and from JSON and BSON.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataObjectIdConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Writes the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataObjectIdConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Reads the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<param name="existingValue">The existing value of object being read.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
<returns>The object value.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataObjectIdConverter.CanConvert(System.Type)">
|
||||
<summary>
|
||||
Determines whether this instance can convert the specified object type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>
|
||||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="T:Newtonsoft.Json.Bson.Converters.BsonDataRegexConverter">
|
||||
<summary>
|
||||
Converts a <see cref="T:System.Text.RegularExpressions.Regex"/> to and from BSON.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataRegexConverter.WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Writes the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="writer">The <see cref="T:Newtonsoft.Json.JsonWriter"/> to write to.</param>
|
||||
<param name="value">The value.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataRegexConverter.ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)">
|
||||
<summary>
|
||||
Reads the JSON representation of the object.
|
||||
</summary>
|
||||
<param name="reader">The <see cref="T:Newtonsoft.Json.JsonReader"/> to read from.</param>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<param name="existingValue">The existing value of object being read.</param>
|
||||
<param name="serializer">The calling serializer.</param>
|
||||
<returns>The object value.</returns>
|
||||
</member>
|
||||
<member name="M:Newtonsoft.Json.Bson.Converters.BsonDataRegexConverter.CanConvert(System.Type)">
|
||||
<summary>
|
||||
Determines whether this instance can convert the specified object type.
|
||||
</summary>
|
||||
<param name="objectType">Type of the object.</param>
|
||||
<returns>
|
||||
<c>true</c> if this instance can convert the specified object type; otherwise, <c>false</c>.
|
||||
</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/Newtonsoft.Json.dll
Normal file
BIN
Interfaces/bin/Debug/Newtonsoft.Json.dll
Normal file
Binary file not shown.
11363
Interfaces/bin/Debug/Newtonsoft.Json.xml
Normal file
11363
Interfaces/bin/Debug/Newtonsoft.Json.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/OpenMcdf.dll
Normal file
BIN
Interfaces/bin/Debug/OpenMcdf.dll
Normal file
Binary file not shown.
1180
Interfaces/bin/Debug/OpenMcdf.xml
Normal file
1180
Interfaces/bin/Debug/OpenMcdf.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/Oracle.ManagedDataAccess.dll
Normal file
BIN
Interfaces/bin/Debug/Oracle.ManagedDataAccess.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/RtfPipe.dll
Normal file
BIN
Interfaces/bin/Debug/RtfPipe.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.AppContext.dll
Normal file
BIN
Interfaces/bin/Debug/System.AppContext.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Buffers.dll
Normal file
BIN
Interfaces/bin/Debug/System.Buffers.dll
Normal file
Binary file not shown.
173
Interfaces/bin/Debug/System.Buffers.xml
Normal file
173
Interfaces/bin/Debug/System.Buffers.xml
Normal file
@@ -0,0 +1,173 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Buffers</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Buffers.ArrayPool`1">
|
||||
<summary>
|
||||
Provides a resource pool that enables reusing instances of type <see cref="T:T[]"/>.
|
||||
</summary>
|
||||
<remarks>
|
||||
<para>
|
||||
Renting and returning buffers with an <see cref="T:System.Buffers.ArrayPool`1"/> can increase performance
|
||||
in situations where arrays are created and destroyed frequently, resulting in significant
|
||||
memory pressure on the garbage collector.
|
||||
</para>
|
||||
<para>
|
||||
This class is thread-safe. All members may be used by multiple threads concurrently.
|
||||
</para>
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="F:System.Buffers.ArrayPool`1.s_sharedInstance">
|
||||
<summary>The lazily-initialized shared pool instance.</summary>
|
||||
</member>
|
||||
<member name="P:System.Buffers.ArrayPool`1.Shared">
|
||||
<summary>
|
||||
Retrieves a shared <see cref="T:System.Buffers.ArrayPool`1"/> instance.
|
||||
</summary>
|
||||
<remarks>
|
||||
The shared pool provides a default implementation of <see cref="T:System.Buffers.ArrayPool`1"/>
|
||||
that's intended for general applicability. It maintains arrays of multiple sizes, and
|
||||
may hand back a larger array than was actually requested, but will never hand back a smaller
|
||||
array than was requested. Renting a buffer from it with <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/> will result in an
|
||||
existing buffer being taken from the pool if an appropriate buffer is available or in a new
|
||||
buffer being allocated if one is not available.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.EnsureSharedCreated">
|
||||
<summary>Ensures that <see cref="F:System.Buffers.ArrayPool`1.s_sharedInstance"/> has been initialized to a pool and returns it.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Create">
|
||||
<summary>
|
||||
Creates a new <see cref="T:System.Buffers.ArrayPool`1"/> instance using default configuration options.
|
||||
</summary>
|
||||
<returns>A new <see cref="T:System.Buffers.ArrayPool`1"/> instance.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:System.Buffers.ArrayPool`1"/> instance using custom configuration options.
|
||||
</summary>
|
||||
<param name="maxArrayLength">The maximum length of array instances that may be stored in the pool.</param>
|
||||
<param name="maxArraysPerBucket">
|
||||
The maximum number of array instances that may be stored in each bucket in the pool. The pool
|
||||
groups arrays of similar lengths into buckets for faster access.
|
||||
</param>
|
||||
<returns>A new <see cref="T:System.Buffers.ArrayPool`1"/> instance with the specified configuration options.</returns>
|
||||
<remarks>
|
||||
The created pool will group arrays into buckets, with no more than <paramref name="maxArraysPerBucket"/>
|
||||
in each bucket and with those arrays not exceeding <paramref name="maxArrayLength"/> in length.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
|
||||
<summary>
|
||||
Retrieves a buffer that is at least the requested length.
|
||||
</summary>
|
||||
<param name="minimumLength">The minimum length of the array needed.</param>
|
||||
<returns>
|
||||
An <see cref="T:T[]"/> that is at least <paramref name="minimumLength"/> in length.
|
||||
</returns>
|
||||
<remarks>
|
||||
This buffer is loaned to the caller and should be returned to the same pool via
|
||||
<see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"/> so that it may be reused in subsequent usage of <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/>.
|
||||
It is not a fatal error to not return a rented buffer, but failure to do so may lead to
|
||||
decreased application performance, as the pool may need to create a new buffer to replace
|
||||
the one lost.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
|
||||
<summary>
|
||||
Returns to the pool an array that was previously obtained via <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/> on the same
|
||||
<see cref="T:System.Buffers.ArrayPool`1"/> instance.
|
||||
</summary>
|
||||
<param name="array">
|
||||
The buffer previously obtained from <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/> to return to the pool.
|
||||
</param>
|
||||
<param name="clearArray">
|
||||
If <c>true</c> and if the pool will store the buffer to enable subsequent reuse, <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"/>
|
||||
will clear <paramref name="array"/> of its contents so that a subsequent consumer via <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/>
|
||||
will not see the previous consumer's content. If <c>false</c> or if the pool will release the buffer,
|
||||
the array's contents are left unchanged.
|
||||
</param>
|
||||
<remarks>
|
||||
Once a buffer has been returned to the pool, the caller gives up all ownership of the buffer
|
||||
and must not use it. The reference returned from a given call to <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"/> must only be
|
||||
returned via <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"/> once. The default <see cref="T:System.Buffers.ArrayPool`1"/>
|
||||
may hold onto the returned buffer in order to rent it again, or it may release the returned buffer
|
||||
if it's determined that the pool already has enough buffers stored.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:System.Buffers.ArrayPoolEventSource.BufferAllocatedReason">
|
||||
<summary>The reason for a BufferAllocated event.</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.ArrayPoolEventSource.BufferAllocatedReason.Pooled">
|
||||
<summary>The pool is allocating a buffer to be pooled in a bucket.</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.ArrayPoolEventSource.BufferAllocatedReason.OverMaximumSize">
|
||||
<summary>The requested buffer size was too large to be pooled.</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.ArrayPoolEventSource.BufferAllocatedReason.PoolExhausted">
|
||||
<summary>The pool has already allocated for pooling as many buffers of a particular size as it's allowed.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPoolEventSource.BufferRented(System.Int32,System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Event for when a buffer is rented. This is invoked once for every successful call to Rent,
|
||||
regardless of whether a buffer is allocated or a buffer is taken from the pool. In a
|
||||
perfect situation where all rented buffers are returned, we expect to see the number
|
||||
of BufferRented events exactly match the number of BuferReturned events, with the number
|
||||
of BufferAllocated events being less than or equal to those numbers (ideally significantly
|
||||
less than).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPoolEventSource.BufferAllocated(System.Int32,System.Int32,System.Int32,System.Int32,System.Buffers.ArrayPoolEventSource.BufferAllocatedReason)">
|
||||
<summary>
|
||||
Event for when a buffer is allocated by the pool. In an ideal situation, the number
|
||||
of BufferAllocated events is significantly smaller than the number of BufferRented and
|
||||
BufferReturned events.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPoolEventSource.BufferReturned(System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Event raised when a buffer is returned to the pool. This event is raised regardless of whether
|
||||
the returned buffer is stored or dropped. In an ideal situation, the number of BufferReturned
|
||||
events exactly matches the number of BufferRented events.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.DefaultArrayPool`1.DefaultMaxArrayLength">
|
||||
<summary>The default maximum length of each array in the pool (2^20).</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.DefaultArrayPool`1.DefaultMaxNumberOfArraysPerBucket">
|
||||
<summary>The default maximum number of arrays per bucket that are available for rent.</summary>
|
||||
</member>
|
||||
<member name="F:System.Buffers.DefaultArrayPool`1.s_emptyArray">
|
||||
<summary>Lazily-allocated empty array used when arrays of length 0 are requested.</summary>
|
||||
</member>
|
||||
<member name="P:System.Buffers.DefaultArrayPool`1.Id">
|
||||
<summary>Gets an ID for the pool to use with events.</summary>
|
||||
</member>
|
||||
<member name="T:System.Buffers.DefaultArrayPool`1.Bucket">
|
||||
<summary>Provides a thread-safe bucket containing buffers that can be Rent'd and Return'd.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.DefaultArrayPool`1.Bucket.#ctor(System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Creates the pool with numberOfBuffers arrays where each buffer is of bufferLength length.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.Buffers.DefaultArrayPool`1.Bucket.Id">
|
||||
<summary>Gets an ID for the bucket to use with events.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.DefaultArrayPool`1.Bucket.Rent">
|
||||
<summary>Takes an array from the bucket. If the bucket is empty, returns null.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.DefaultArrayPool`1.Bucket.Return(`0[])">
|
||||
<summary>
|
||||
Attempts to return the buffer to the bucket. If successful, the buffer will be stored
|
||||
in the bucket and true will be returned; otherwise, the buffer won't be stored, and false
|
||||
will be returned.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:System.SR.ArgumentException_BufferNotFromPool">
|
||||
<summary>The buffer is not associated with this pool and may not be returned to it.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
Interfaces/bin/Debug/System.CodeDom.dll
Normal file
BIN
Interfaces/bin/Debug/System.CodeDom.dll
Normal file
Binary file not shown.
4454
Interfaces/bin/Debug/System.CodeDom.xml
Normal file
4454
Interfaces/bin/Debug/System.CodeDom.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/System.Collections.Concurrent.dll
Normal file
BIN
Interfaces/bin/Debug/System.Collections.Concurrent.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Collections.Immutable.dll
Normal file
BIN
Interfaces/bin/Debug/System.Collections.Immutable.dll
Normal file
Binary file not shown.
6100
Interfaces/bin/Debug/System.Collections.Immutable.xml
Normal file
6100
Interfaces/bin/Debug/System.Collections.Immutable.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Interfaces/bin/Debug/System.Collections.NonGeneric.dll
Normal file
BIN
Interfaces/bin/Debug/System.Collections.NonGeneric.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Collections.Specialized.dll
Normal file
BIN
Interfaces/bin/Debug/System.Collections.Specialized.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Collections.dll
Normal file
BIN
Interfaces/bin/Debug/System.Collections.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.ComponentModel.EventBasedAsync.dll
Normal file
BIN
Interfaces/bin/Debug/System.ComponentModel.EventBasedAsync.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.ComponentModel.Primitives.dll
Normal file
BIN
Interfaces/bin/Debug/System.ComponentModel.Primitives.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.ComponentModel.TypeConverter.dll
Normal file
BIN
Interfaces/bin/Debug/System.ComponentModel.TypeConverter.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.ComponentModel.dll
Normal file
BIN
Interfaces/bin/Debug/System.ComponentModel.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Console.dll
Normal file
BIN
Interfaces/bin/Debug/System.Console.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Data.Common.dll
Normal file
BIN
Interfaces/bin/Debug/System.Data.Common.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.Contracts.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.Contracts.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.Debug.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.Debug.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.FileVersionInfo.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.FileVersionInfo.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.Process.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.Process.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.StackTrace.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.StackTrace.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.Tools.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.Tools.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.TraceSource.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.TraceSource.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Diagnostics.Tracing.dll
Normal file
BIN
Interfaces/bin/Debug/System.Diagnostics.Tracing.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Drawing.Primitives.dll
Normal file
BIN
Interfaces/bin/Debug/System.Drawing.Primitives.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Dynamic.Runtime.dll
Normal file
BIN
Interfaces/bin/Debug/System.Dynamic.Runtime.dll
Normal file
Binary file not shown.
BIN
Interfaces/bin/Debug/System.Globalization.Calendars.dll
Normal file
BIN
Interfaces/bin/Debug/System.Globalization.Calendars.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user