Update Version 2.3
This commit is contained in:
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/Galactic.ActiveDirectory.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/Galactic.ActiveDirectory.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/lib/DnDns.dll
vendored
Normal file
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/lib/DnDns.dll
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/lib/Galactic.ActiveDirectory.dll
vendored
Normal file
BIN
packages/Galactic.ActiveDirectory.1.3.0.499/lib/Galactic.ActiveDirectory.dll
vendored
Normal file
Binary file not shown.
1254
packages/Galactic.ActiveDirectory.1.3.0.499/lib/Galactic.ActiveDirectory.xml
vendored
Normal file
1254
packages/Galactic.ActiveDirectory.1.3.0.499/lib/Galactic.ActiveDirectory.xml
vendored
Normal file
File diff suppressed because it is too large
Load Diff
BIN
packages/Galactic.Configuration.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.Configuration.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.Configuration.1.3.0.499/Galactic.Configuration.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.Configuration.1.3.0.499/Galactic.Configuration.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.Configuration.1.3.0.499/lib/Galactic.Configuration.dll
vendored
Normal file
BIN
packages/Galactic.Configuration.1.3.0.499/lib/Galactic.Configuration.dll
vendored
Normal file
Binary file not shown.
108
packages/Galactic.Configuration.1.3.0.499/lib/Galactic.Configuration.xml
vendored
Normal file
108
packages/Galactic.Configuration.1.3.0.499/lib/Galactic.Configuration.xml
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Galactic.Configuration</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Galactic.Configuration.ConfigurationItem">
|
||||
<summary>
|
||||
Manages files containing strings used as an alternative to placing configuration information
|
||||
in an application's web.config or application.config files.
|
||||
This approaches allows for easier management of these items as they don't require a restart of the
|
||||
application to manipulate and save the configuration information.
|
||||
The strings can be (optionally) encrypted.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.Configuration.ConfigurationItem.FilePath">
|
||||
<summary>
|
||||
The full path to the file containing the configuration item.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.Configuration.ConfigurationItem.FolderPath">
|
||||
<summary>
|
||||
The path to the folder containing the configuration item.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.Configuration.ConfigurationItem.Name">
|
||||
<summary>
|
||||
The name of the configuration item.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.Configuration.ConfigurationItem.Encrypted">
|
||||
<summary>
|
||||
Whether the configuration item should be encrypted.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.Configuration.ConfigurationItem.Value">
|
||||
<summary>
|
||||
The value of the configuration item.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.#ctor(System.String,System.String,System.Boolean,System.String,Galactic.EventLog.EventLog,System.Boolean)">
|
||||
<summary>
|
||||
Loads a configuration item with the specified name from its file located
|
||||
in a folder at the supplied path.
|
||||
</summary>
|
||||
<param name="folderPath">The path of the folder containing the configuration item.</param>
|
||||
<param name="name">The name of the configuration item.</param>
|
||||
<param name="encrypted">Whether to store the item in an encrypted format.</param>
|
||||
<param name="value">(Optional) The value of the configuration item. (Supplying a null value will retrieve the value stored
|
||||
in the item if it already exists).</param>
|
||||
<param name="log">(Optional) The event log to log exceptions to. May be null for no logging.</param>
|
||||
<param name="readOnly">Whether the configuration item should be opened for reading only. Default: true</param>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.Create(System.String,System.String)">
|
||||
<summary>
|
||||
Creates a new configuration file that can then be loaded normally.
|
||||
Note: This will NOT overwrite an existing file.
|
||||
</summary>
|
||||
<param name="folderPath">The path of the folder to create the configuration item.</param>
|
||||
<param name="name">The name of the configuration item to create.</param>
|
||||
<returns>True if the file was created or already exists, false if an error prevented it from being created.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.Delete">
|
||||
<summary>
|
||||
Deletes the configuration item.
|
||||
</summary>
|
||||
<returns>True if the item was deleted, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.Get(Galactic.EventLog.EventLog)">
|
||||
<summary>
|
||||
Retrieves the value of a configuration item from its file.
|
||||
</summary>
|
||||
<param name="log">The event log to log exceptions to. May be null for no logging.</param>
|
||||
<returns>The value of the configuration item or null if not found.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.LogException(System.Exception,Galactic.EventLog.IEventLog)">
|
||||
<summary>
|
||||
Logs an exception to the event log.
|
||||
</summary>
|
||||
<param name="e">The exception to log.</param>
|
||||
<param name="log">The event log to log the exception to.</param>
|
||||
<returns>True if the exception was logged successfully. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.Write(System.String,Galactic.EventLog.EventLog)">
|
||||
<summary>
|
||||
Writes a configuration item's value to a file.
|
||||
</summary>
|
||||
<param name="value">The value to write to the file.</param>
|
||||
<param name="log">The event log to log exceptions to. May be null for no logging.</param>
|
||||
<returns>True if the write was successful, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.SecureGet(Galactic.EventLog.EventLog)">
|
||||
<summary>
|
||||
Retrieves an AES 256 encrypted value from the configuration file.
|
||||
</summary>
|
||||
<param name="log">The event log to log exceptions to. May be null for no logging.</param>
|
||||
<returns>The value or null if not found or it could not be decrypted.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Configuration.ConfigurationItem.SecureWrite(System.String,Galactic.EventLog.EventLog)">
|
||||
<summary>
|
||||
Writes an AES 256 encrypted value to its configuration file.
|
||||
</summary>
|
||||
<param name="value">The value to write to the file.</param>
|
||||
<param name="log">The event log to log execptions to. May be null for no logging.</param>
|
||||
<returns>True if the write was successful, false otherwise.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Galactic.Cryptography.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.Cryptography.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.Cryptography.1.3.0.499/Galactic.Cryptography.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.Cryptography.1.3.0.499/Galactic.Cryptography.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.Cryptography.1.3.0.499/lib/Galactic.Cryptography.dll
vendored
Normal file
BIN
packages/Galactic.Cryptography.1.3.0.499/lib/Galactic.Cryptography.dll
vendored
Normal file
Binary file not shown.
135
packages/Galactic.Cryptography.1.3.0.499/lib/Galactic.Cryptography.xml
vendored
Normal file
135
packages/Galactic.Cryptography.1.3.0.499/lib/Galactic.Cryptography.xml
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Galactic.Cryptography</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Galactic.Cryptography.AES256">
|
||||
<summary>
|
||||
Rijndael is a class that allows for the easy encryption and decryption of strings
|
||||
using the AES 256 encryption algorithm.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.GenerateIV">
|
||||
<summary>
|
||||
Generates a random initialization vector for use by the encryption algorithm.
|
||||
</summary>
|
||||
<returns>A random array of bytes, or an empty byte array if the IV could not be
|
||||
generated.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.BytesToString(System.Byte[])">
|
||||
<summary>
|
||||
Generates a string representation of an array of bytes.
|
||||
</summary>
|
||||
<param name="bytes">The bytes to convert.</param>
|
||||
<returns>A string representation of an array of bytes, or null if
|
||||
the string is too large to convert successfully.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.StringToBytes(System.String)">
|
||||
<summary>
|
||||
Generates a byte representation of a string generated by BytesToString().
|
||||
</summary>
|
||||
<param name="text">The string to convert.</param>
|
||||
<returns>A byte representation of the string, or any empty byte array if the string could not
|
||||
be successfully converted.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.GenerateKey">
|
||||
<summary>
|
||||
Generates a random key for use by the encryption algorithm.
|
||||
</summary>
|
||||
<returns>A random array of bytes, or an empty byte array if the key could not be
|
||||
generated.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.EncryptStringToBytes(System.String,System.Byte[],System.Byte[])">
|
||||
<summary>
|
||||
Encrypts a string of text to an array of AES 256 encrypted bytes.
|
||||
</summary>
|
||||
<param name="text">The text to encrypt.</param>
|
||||
<param name="key">The key used by the encryption algorithm.</param>
|
||||
<param name="iv">The initialization vector used by the encryption algorithm.</param>
|
||||
<returns>An encrypted array of bytes, or an empty array of bytes if the string could not
|
||||
be encrypted.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.CreateConsolidatedString(System.String)">
|
||||
<summary>
|
||||
Encrypts a string of text with AES 256, and concatenates the key and initialization vector to
|
||||
the beginning of the string, and the length of the key and initialization vector to the end
|
||||
of the string. This is useful in scenarios where it is not feasible to store the key and
|
||||
initialization vector seperately, though not as secure.
|
||||
</summary>
|
||||
<param name="text">The text to encrypt.</param>
|
||||
<returns>A string representation containing the key, initialization vector, and encrypted text,
|
||||
along with the lengths of the key and initialization vector, or a null string if the text
|
||||
could not be encrypted or an error occurs creating the string.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.DecryptConsolidatedString(System.String)">
|
||||
<summary>
|
||||
Decrypts a consolidated string containing and AES 256 encrypted string, and properties of the key and initializiation
|
||||
vector used to encrypt/decrypt the string.
|
||||
</summary>
|
||||
<param name="text">The consolidated string to decrypt.</param>
|
||||
<returns>The text encrypted in the consolidated string, or a null string if the text could not be decrypted or an error
|
||||
occurs decrypting the string.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.AES256.DecryptStringFromBytes(System.Byte[],System.Byte[],System.Byte[])">
|
||||
<summary>
|
||||
Decrypts an array of AES 256 encrypted bytes to a plain text string.
|
||||
</summary>
|
||||
<param name="cipherText">The bytes to decrypt.</param>
|
||||
<param name="key">The key used by the decryption algorithm.</param>
|
||||
<param name="iv">The initialization vector used by the decryption algorithm.</param>
|
||||
<returns>The decrypted string, or null if the byte array could not be decrypted.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.Cryptography.SaltedHash">
|
||||
<summary>
|
||||
SaltedHash is a class that generates and verifies salted
|
||||
hashes for cryptographic purposes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.SaltedHash.GenerateSalt">
|
||||
<summary>
|
||||
Generates a random salt using cryptographically secure algorithms.
|
||||
</summary>
|
||||
<returns>A random integer.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.SaltedHash.GenerateHash(System.String,System.Int32@)">
|
||||
<summary>
|
||||
Generates a salted hash using the supplied string data.
|
||||
A random integer is generated as the salt.
|
||||
</summary>
|
||||
<param name="data">The data to generate a hash off.</param>
|
||||
<param name="salt">A random integer used as a salt.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.SaltedHash.VerifyHash(System.String,System.Int32,System.String)">
|
||||
<summary>
|
||||
Verifies that the supplied data string matches the value in the supplied hash.
|
||||
</summary>
|
||||
<param name="data">The string of data to check against the hash.</param>
|
||||
<param name="salt">The salt for this data.</param>
|
||||
<param name="hash">The hash to compare against.</param>
|
||||
<returns>True if the data matches, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.Cryptography.SHA256">
|
||||
<summary>
|
||||
Handles getting and verifying SHA256 hashes.
|
||||
Based on Microsoft's example code.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.SHA256.GetHash(System.String)">
|
||||
<summary>
|
||||
Hash in input string and return the hash as a 32 character hexadecimal string.
|
||||
</summary>
|
||||
<param name="input">String to create the hash of.</param>
|
||||
<returns>The hash of the string.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.Cryptography.SHA256.VerifyHash(System.String,System.String)">
|
||||
<summary>
|
||||
Verify a hash against a string.
|
||||
</summary>
|
||||
<param name="input">The input string to verify.</param>
|
||||
<param name="hash">The hash to verify against.</param>
|
||||
<returns>True if the input string matches the hash.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Galactic.EventLog.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.EventLog.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.EventLog.1.3.0.499/Galactic.EventLog.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.EventLog.1.3.0.499/Galactic.EventLog.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.EventLog.1.3.0.499/lib/Galactic.EventLog.dll
vendored
Normal file
BIN
packages/Galactic.EventLog.1.3.0.499/lib/Galactic.EventLog.dll
vendored
Normal file
Binary file not shown.
171
packages/Galactic.EventLog.1.3.0.499/lib/Galactic.EventLog.xml
vendored
Normal file
171
packages/Galactic.EventLog.1.3.0.499/lib/Galactic.EventLog.xml
vendored
Normal file
@@ -0,0 +1,171 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Galactic.EventLog</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Galactic.EventLog.Event">
|
||||
<summary>
|
||||
Event contains the data necessary to log events for an application or service.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Galactic.EventLog.Event.SeverityLevels">
|
||||
<summary>
|
||||
The possible severity levels of a logged event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.EventLog.Event.SeverityLevels.Information">
|
||||
<summary>
|
||||
Indicates that this event is informational in nature.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.EventLog.Event.SeverityLevels.Warning">
|
||||
<summary>
|
||||
Indicates that this event contains a warning.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.EventLog.Event.SeverityLevels.Error">
|
||||
<summary>
|
||||
Indicates that this event contains an error.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.EventLog.Event.SeverityLevels.Unknown">
|
||||
<summary>
|
||||
Indicates that this event contains an unknown security level.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.Event.Category">
|
||||
<summary>
|
||||
A category that describes the nature of the event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.Event.Date">
|
||||
<summary>
|
||||
The date and time that the event occurred.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.Event.Details">
|
||||
<summary>
|
||||
A detailed description of the event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.Event.Severity">
|
||||
<summary>
|
||||
The severity of the event.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.Event.Source">
|
||||
<summary>
|
||||
An identifier for the application or service from which the event originated.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.Event.#ctor(System.String,System.DateTime,Galactic.EventLog.Event.SeverityLevels,System.String,System.String)">
|
||||
<summary>
|
||||
Constructs an Event given its source, date, severity, category, and details about the event.
|
||||
</summary>
|
||||
<param name="source">An identifier for the application or service from which the event originated.</param>
|
||||
<param name="date">The date and time that the event occurred.</param>
|
||||
<param name="severity">The severity of the event.</param>
|
||||
<param name="category">A category that describes the nature of the event.</param>
|
||||
<param name="details">A detailed description of the event.</param>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.Event.CompareTo(Galactic.EventLog.Event)">
|
||||
<summary>
|
||||
Compares this Event to another based upon the date of the event.
|
||||
</summary>
|
||||
<param name="other">The other event to compare against.</param>
|
||||
<returns>Less than zero if this event occurred before the other event.
|
||||
Zero if the events occurred at the same time.
|
||||
Greater than zero if this event occured after the other event.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.Event.CompareTo(System.DateTime)">
|
||||
<summary>
|
||||
Compares this Event to a DateTime based upon the date of the event.
|
||||
</summary>
|
||||
<param name="date">The DateTime to compare against.</param>
|
||||
<returns>Less than zero if this event occurred before the date supplied.
|
||||
Zero if this event occurred at the same time as the date supplied.
|
||||
Greater than zero if this event occured after the date supplied.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.Event.GetSeverityLevelString(Galactic.EventLog.Event.SeverityLevels)">
|
||||
<summary>
|
||||
Gets a string representation of a provided severity level.
|
||||
</summary>
|
||||
<param name="severityLevel">The severity level to get a string representation of.</param>
|
||||
<returns>The string representation of the severity level, or an empty string if unknown.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.Event.GetSeverityLevel(System.String)">
|
||||
<summary>
|
||||
Gets the severity level, provided its name.
|
||||
</summary>
|
||||
<param name="name">The name of the severity level to get.</param>
|
||||
<returns>The severity level belonging to the name provided, or SeverityLevels.Unknown if the name does not match a severity level.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.EventLog.EventLog">
|
||||
<summary>
|
||||
EventLog is an abstract base class for classes that log activity via various methods.
|
||||
Examples of possible methods include: text file, SQL database, e-mail, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.EventLog.Find(System.String,System.Nullable{Galactic.EventLog.Event.SeverityLevels},System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
|
||||
<summary>
|
||||
Finds events that match the filters provided.
|
||||
See each parameter for information on how to filter the search.
|
||||
</summary>
|
||||
<param name="source">Searches for all events with sources that match the string provided. Returns events of all sources on a null or empty string.</param>
|
||||
<param name="severity">Searches for events with the specified severity level. Returns events of all severity levels on null.</param>
|
||||
<param name="category">Searches for events with categories that match the string provided. Returns events of all categories on a null or empty string.</param>
|
||||
<param name="begin">Returns events with a date/time on or after the date/time supplied. Does not put a lower range on event dates on a null date/time.</param>
|
||||
<param name="end">Returns events with a date/time on or before the date/time supplied. Does not put an upper range on event dates on a null date/time.</param>
|
||||
<returns>A list of events sorted from earliest to latest that match the given search parameters.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.EventLog.Log(Galactic.EventLog.Event)">
|
||||
<summary>
|
||||
Logs the event to the event log.
|
||||
</summary>
|
||||
<param name="eventToLog">The event to log.</param>
|
||||
<returns>True if the event was logged successfully. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.EventLog.IEventLog">
|
||||
<summary>
|
||||
An interface for classes that wish to implement functionality that allows them to be a catalog of application events.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.IEventLog.Find(System.String,System.Nullable{Galactic.EventLog.Event.SeverityLevels},System.String,System.Nullable{System.DateTime},System.Nullable{System.DateTime})">
|
||||
<summary>
|
||||
Finds events that match the filters provided.
|
||||
See each parameter for information on how to filter the search.
|
||||
</summary>
|
||||
<param name="source">Searches for all events with sources that match the string provided. Returns events of all sources on a null or empty string.</param>
|
||||
<param name="severity">Searches for events with the specified severity level. Returns events of all severity levels on null.</param>
|
||||
<param name="category">Searches for events with categories that match the string provided. Returns events of all categories on a null or empty string.</param>
|
||||
<param name="begin">Returns events with a date/time on or after the date/time supplied. Does not put a lower range on event dates on a null date/time.</param>
|
||||
<param name="end">Returns events with a date/time on or before the date/time supplied. Does not put an upper range on event dates on a null date/time.</param>
|
||||
<returns>A list of events sorted from earliest to latest that match the given search parameters.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.IEventLog.Log(Galactic.EventLog.Event)">
|
||||
<summary>
|
||||
Logs the event to the event log.
|
||||
</summary>
|
||||
<param name="eventToLog">The event to log.</param>
|
||||
<returns>True if the event was logged successfully. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.EventLog.IExceptionLogger">
|
||||
<summary>
|
||||
An interface for classes that whish log their exceptions to an event log.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.EventLog.IExceptionLogger.Log">
|
||||
<summary>
|
||||
The event log that will receive events from this logger.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.EventLog.IExceptionLogger.LogException(System.Exception)">
|
||||
<summary>
|
||||
Logs an exception to the event log.
|
||||
</summary>
|
||||
<param name="e">The exception to log.</param>
|
||||
<returns>True if the exception was logged successfully. False otherwise.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Galactic.FileSystem.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.FileSystem.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.FileSystem.1.3.0.499/Galactic.FileSystem.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.FileSystem.1.3.0.499/Galactic.FileSystem.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.FileSystem.1.3.0.499/lib/Galactic.FileSystem.dll
vendored
Normal file
BIN
packages/Galactic.FileSystem.1.3.0.499/lib/Galactic.FileSystem.dll
vendored
Normal file
Binary file not shown.
518
packages/Galactic.FileSystem.1.3.0.499/lib/Galactic.FileSystem.xml
vendored
Normal file
518
packages/Galactic.FileSystem.1.3.0.499/lib/Galactic.FileSystem.xml
vendored
Normal file
@@ -0,0 +1,518 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Galactic.FileSystem</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Galactic.FileSystem.Directory">
|
||||
<summary>
|
||||
A utility class for manipulating directories on the file system.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Galactic.FileSystem.Directory.AccessRights">
|
||||
<summary>
|
||||
Valid access rights that may be applied to directories.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.CreateFilesWriteData">
|
||||
<summary>
|
||||
Create files/write data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.FullControl">
|
||||
<summary>
|
||||
Full control.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.ListFolderReadData">
|
||||
<summary>
|
||||
List folder/read data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.Modify">
|
||||
<summary>
|
||||
Modify.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.Read">
|
||||
<summary>
|
||||
Read.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.ReadAttributes">
|
||||
<summary>
|
||||
Read attributes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.ReadExtendedAttributes">
|
||||
<summary>
|
||||
Read extended attributes.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.ReadPermissions">
|
||||
<summary>
|
||||
Read permissions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.FileSystem.Directory.AccessRights.TraverseFolderExecuteFile">
|
||||
<summary>
|
||||
Traverse folder / execute file permissions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.AddAccessRule(System.String,System.Security.AccessControl.DirectorySecurity@,System.Security.AccessControl.FileSystemAccessRule,System.Boolean)">
|
||||
<summary>
|
||||
Adds an access rule to the directory at the supplied path.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to add the rule to.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="rule">The rule to add to the directory.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if the rule was added. False if the directory does not exist, the rule is null, or the process does not have access to
|
||||
the specified path, or does not have sufficient access to change the ACL entry of the directory, or the operating system is not Windows
|
||||
2000 or later.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.BlockInheritance(System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Blocks inheritance on this directory.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to block inheritance on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="addInheritedPermissions">If true, copies the directory's inherited permissions as explicit permissions on the directory.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this entry. Useful when combining multiple commands.</param>
|
||||
<returns>True if inheritance was blocked on the directory, false if the directory does not exist, or inheritance could not be
|
||||
blocked.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Clone(System.String,System.String)">
|
||||
<summary>
|
||||
Clones a directory to a new location. Does not copy any files or folders beneath it.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to clone.</param>
|
||||
<param name="newPath">The destination path to clone the directory to.</param>
|
||||
<returns>True if the directory was cloned. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.CommitChanges(System.String,System.Security.AccessControl.DirectorySecurity@)">
|
||||
<summary>
|
||||
Commits any pending changes to the directory specified by the supplied path.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to commit changes on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<returns>True if the changes were commited. False if the directory does not exist,
|
||||
or the current process does not have sufficient access to the specified path, or the
|
||||
current operating system in not Windows 2000 or later.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Copy(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Copies a directory to a new location including all files and folders beneath it.
|
||||
Creates a new directory if necessary.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to copy.</param>
|
||||
<param name="newPath">The destination path to copy the directory to.</param>
|
||||
<param name="overwrite">Whether to overwrite any existing files in the directory being copied to.</param>
|
||||
<returns>True if the directory was copied. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Create(System.String)">
|
||||
<summary>
|
||||
Creates a directory at the specified path.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to create.</param>
|
||||
<returns>True if the directory was created or already exists.
|
||||
False if an error occured and the directory could not be created.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Delete(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Deletes a directory at the specified path.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to delete.</param>
|
||||
<param name="recursive">Recursively delete the files an subfolders of the directory.</param>
|
||||
<returns>True if the directory was deleted or did not exist, false if an error occured
|
||||
and the directory could not be deleted.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Exists(System.String)">
|
||||
<summary>
|
||||
Checks whether the directory at the specified path exists on the file system.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to check.</param>
|
||||
<returns>True if it exists, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GetListing(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Gets a list of the contents of a directory at the specified path.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to get a list of the contents of.</param>
|
||||
<param name="getSubDirs">Whether to obtain a list of the contents of all subdirectories as well.</param>
|
||||
<returns>An array of strings with the names of directories and files under the supplied path.
|
||||
Null if the path is invalid, does not exist, or the current process does not have permission
|
||||
to get the directory listing.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GetSizeInBytes(System.String)">
|
||||
<summary>
|
||||
Gets the size of a directory's contents in bytes.
|
||||
</summary>
|
||||
<param name="path">The path to the directory.</param>
|
||||
<returns>The size of the directory's contents in bytes, or a negative file size if there was error retrieving this information.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GetSecurityObject(System.String)">
|
||||
<summary>
|
||||
Gets the DirectorySecurity object for the directory specified by the supplied path.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to retrieve the security object for.</param>
|
||||
<returns>The security object for the directory specified. Null if the directory does not exist,
|
||||
an I/O Error occurred, the current operating system is not Windows 2000 or later,
|
||||
the path specified is read-only, or the process does not have permission to complete the operation.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(System.Byte[],System.String,System.Security.AccessControl.DirectorySecurity@,System.Security.AccessControl.FileSystemRights,System.Boolean,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Gives access to the account with the supplied security identifier on the target directory.
|
||||
</summary>
|
||||
<param name="accountSid">The security identifier (SID) of the account that should be given access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="rights">The access rights to grant on the target directory.</param>
|
||||
<param name="applyToSubfolders">Indicates whether this directory's permissions apply to subfolders beneath it.</param>
|
||||
<param name="applyToFiles">Indicates whether this directory's permissions apply to files beneath it.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(System.DirectoryServices.DirectoryEntry,System.String,System.Security.AccessControl.DirectorySecurity@,System.Security.AccessControl.FileSystemRights,System.Boolean,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Gives access to the entry supplied on the target directory.
|
||||
</summary>
|
||||
<param name="entry">The entry to give access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="rights">The access rights to grant on the target directory.</param>
|
||||
<param name="applyToSubfolders">Indicates whether this directory's permissions apply to subfolders beneath it.</param>
|
||||
<param name="applyToFiles">Indicates whether this directory's permissions apply to files beneath it.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(Galactic.FileSystem.Directory.AccessRights,System.Byte[],System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Gives the supplied data access rights to the account with the supplied security identifier on the target directory.
|
||||
</summary>
|
||||
<param name="rights">The rights to apply to the target directory.</param>
|
||||
<param name="accountSid">The security identifier (SID) of the account that should be given access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="applyToSubfolders">Indicates whether this directory's permissions apply to subfolders beneath it.</param>
|
||||
<param name="applyToFiles">Indicates whether this directory's permissions apply to files beneath it.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(Galactic.FileSystem.Directory.AccessRights,System.DirectoryServices.DirectoryEntry,System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Gives the supplied data access rights to the entry supplied on the target directory.
|
||||
</summary>
|
||||
<param name="rights">The rights to apply to the target directory.</param>
|
||||
<param name="entry">The entry to give data access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="applyToSubfolders">Indicates whether this directory's permissions apply to subfolders beneath it.</param>
|
||||
<param name="applyToFiles">Indicates whether this directory's permissions apply to files beneath it.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(Galactic.FileSystem.Directory.AccessRights,System.Byte[],System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean)">
|
||||
<summary>
|
||||
Gives the supplied data access rights to the account with the supplied security
|
||||
identifier on the target directory. Applies inherited permissions to folders and
|
||||
files beneath the target directory.
|
||||
</summary>
|
||||
<param name="rights">The rights to apply to the target directory.</param>
|
||||
<param name="accountSid">The security identifier (SID) of the account that should be given access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.GiveAccess(Galactic.FileSystem.Directory.AccessRights,System.DirectoryServices.DirectoryEntry,System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean)">
|
||||
<summary>
|
||||
Gives the supplied data access rights to the entry supplied on the target directory.
|
||||
Applies inherited permissions to folders and files beneath the target directory.
|
||||
</summary>
|
||||
<param name="rights">The rights to apply to the target directory.</param>
|
||||
<param name="entry">The entry to give data access.</param>
|
||||
<param name="path">The path to the directory to have access granted on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was granted. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.Move(System.String,System.String)">
|
||||
<summary>
|
||||
Moves a directory to a new location.
|
||||
</summary>
|
||||
<param name="path">The path of the directory to move.</param>
|
||||
<param name="newPath">The path to the new location to move the directory.</param>
|
||||
<returns>True if the directory was moved. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.RemoveAllAccessRules(System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean)">
|
||||
<summary>
|
||||
Removes all access rules from the supplied directory.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to remove all access rules from.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if all rules were removed. False if an error occurred.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.RemoveAllExplicitAccessRules(System.String,System.Security.AccessControl.DirectorySecurity@,System.Boolean)">
|
||||
<summary>
|
||||
Removes all explicit access rules from the supplied directory.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to have access removed on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this directory. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was removed. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.SetOwner(System.String,System.Security.AccessControl.DirectorySecurity@,System.Byte[],System.Boolean)">
|
||||
<summary>
|
||||
Sets the owner of a directory.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to have the ownership set on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="ownerSid">The security identifier (SID) of the account that should take ownership of the entry.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this entry. Useful when combining multiple commands.</param>
|
||||
<returns>True if the ownership could be set. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.Directory.SetOwner(System.String,System.Security.AccessControl.DirectorySecurity@,System.DirectoryServices.DirectoryEntry,System.Boolean)">
|
||||
<summary>
|
||||
Sets the owner of a directory.
|
||||
</summary>
|
||||
<param name="path">The path to the directory to have the ownership set on.</param>
|
||||
<param name="security">The DirectorySecurity object of the directory that will be changed.</param>
|
||||
<param name="owner">The directy entry that should take ownership of the entry.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this entry. Useful when combining multiple commands.</param>
|
||||
<returns>True if the ownership could be set. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="T:Galactic.FileSystem.File">
|
||||
<summary>
|
||||
A utility class for manipulating files on the file system.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.FileSystem.File.Path">
|
||||
<summary>
|
||||
The path to the file on the file system.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.FileSystem.File.ReadOnly">
|
||||
<summary>
|
||||
Whether the file is opened as read-only.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.FileSystem.File.Security">
|
||||
<summary>
|
||||
The FileSecurity object for this file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.#ctor(System.String,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Creates or opens a file at the supplied path location.
|
||||
</summary>
|
||||
<param name="path">The path to the location to create or open the file at.</param>
|
||||
<param name="overwrite">Whether to overwrite the contents of an existing file.</param>
|
||||
<param name="readOnly">Whether the file should be opened as read-only.</param>
|
||||
<exception cref="T:System.UnauthorizedAccessException">Thrown if the caller does not have the required permissions to create or open the file,
|
||||
or the file is read-only.</exception>
|
||||
<exception cref="T:System.IO.PathTooLongException">Thrown if the specified path, file name, or both exceeds the system-defined maximum length.
|
||||
For example, on Windows-based patforms, paths must be less than 248 characters, and file names must be less than 260 characters.</exception>
|
||||
<exception cref="T:System.IO.DirectoryNotFoundException">Thrown if the specified path is invalid (for example, it is on an unmapped drive).</exception>
|
||||
<exception cref="T:System.IO.IOException">Thrown if an I/O error occurred while creating the file.</exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">Thrown if opening an existing file and it could not be found at the specified path.</exception>
|
||||
<exception cref="T:System.NotSupportedException">Thrown if the path is in an invalid format.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if the path was not supplied.</exception>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Close">
|
||||
<summary>
|
||||
Closes this file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Copy(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Copies a file to a new location.
|
||||
</summary>
|
||||
<param name="path">The path of the file to move.</param>
|
||||
<param name="newPath">The destination path to copy the file to.</param>
|
||||
<param name="overwrite">Whether to overwrite the contents of a file if it already exists.</param>
|
||||
<returns>True if the file was copied. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Create(System.String)">
|
||||
<summary>
|
||||
Creates or overwrites a file at the supplied path location.
|
||||
</summary>
|
||||
<param name="path">The path to the location to create the file at.</param>
|
||||
<returns>A FileStream of the file created or null if an error occurred.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Create(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Creates or overwrites a file at the supplied path location.
|
||||
</summary>
|
||||
<param name="path">The path to the location to create the file at.</param>
|
||||
<param name="throwExceptions">Whether to throw exceptions during file creation / opening.</param>
|
||||
<returns>A FileStream of the file created or null if an error occurred.</returns>
|
||||
<exception cref="T:System.UnauthorizedAccessException">Thrown if the caller does not have the required permissions to create or open the file,
|
||||
or the file is read-only.</exception>
|
||||
<exception cref="T:System.IO.PathTooLongException">Thrown if the specified path, file name, or both exceeds the system-defined maximum length.
|
||||
For example, on Windows-based patforms, paths must be less than 248 characters, and file names must be less than 260 characters.</exception>
|
||||
<exception cref="T:System.IO.DirectoryNotFoundException">Thrown if the specified path is invalid (for example, it is on an unmapped drive).</exception>
|
||||
<exception cref="T:System.IO.IOException">Thrown if an I/O error occurred while creating the file.</exception>
|
||||
<exception cref="T:System.NotSupportedException">Thrown if the path is in an invalid format.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if the path was not supplied.</exception>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Delete">
|
||||
<summary>
|
||||
Deletes this file.
|
||||
</summary>
|
||||
<returns>True if the file was deleted, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Delete(System.String)">
|
||||
<summary>
|
||||
Deletes the file at the specified path.
|
||||
</summary>
|
||||
<param name="path">The path to the file to delete.</param>
|
||||
<returns>True if the file was deleted, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Dispose">
|
||||
<summary>
|
||||
Frees the resources used by this file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Exists">
|
||||
<summary>
|
||||
Checks whether this file exists on the file system.
|
||||
</summary>
|
||||
<returns>True if it exists, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Exists(System.String)">
|
||||
<summary>
|
||||
Checks whether the file at the specified path exists on the file system.
|
||||
</summary>
|
||||
<param name="path">The path to the file to check.</param>
|
||||
<returns>True if it exists, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.GetReader(System.String)">
|
||||
<summary>
|
||||
Opens and gets a StreamReader for the file at the supplied path.
|
||||
</summary>
|
||||
<param name="path">The path to the file to get a StreamReader for.</param>
|
||||
<returns>A StreamReader for the file.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.GetSecurityObject(System.String)">
|
||||
<summary>
|
||||
Gets the FileSecurity object for the file specified by the supplied path.
|
||||
</summary>
|
||||
<param name="path">The path to the file to retrieve the security object for.</param>
|
||||
<returns>The security object for the file specified. Null if the file does not exist,
|
||||
an I/O error occurred, or the process does not have the permissions required to
|
||||
complete the operation.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.GetSizeInBytes(System.String)">
|
||||
<summary>
|
||||
Gets the size of a file in bytes.
|
||||
</summary>
|
||||
<param name="path">The path to the file.</param>
|
||||
<returns>The size of the file in bytes, or a negative file size if there was error retrieving this information.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Move(System.String)">
|
||||
<summary>
|
||||
Moves this file to a new location.
|
||||
</summary>
|
||||
<param name="newPath">The destination path to move the file to.</param>
|
||||
<returns>True if the file was moved. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Move(System.String,System.String)">
|
||||
<summary>
|
||||
Moves a file to a new location.
|
||||
</summary>
|
||||
<param name="path">The path of the file to move.</param>
|
||||
<param name="newPath">The destination path to move the file to.</param>
|
||||
<returns>True if the file was moved. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Open(System.String,System.Boolean)">
|
||||
<summary>
|
||||
Opens a file at the supplied path location.
|
||||
</summary>
|
||||
<param name="path">The path to the location to open the file at.</param>
|
||||
<param name="readOnly">Whether to open the file as read-only.</param>
|
||||
<returns>A FileStream of the file created or null if an error occurred.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.Open(System.String,System.Boolean,System.Boolean)">
|
||||
<summary>
|
||||
Opens a file at the supplied path location.
|
||||
</summary>
|
||||
<param name="path">The path to the location to open the file at.</param>
|
||||
<param name="readOnly">Whether to open the file as read-only.</param>
|
||||
<param name="throwExceptions">Whether to throw exceptions while opening.</param>
|
||||
<returns>A FileStream of the file created or null if an error occurred.</returns>
|
||||
<exception cref="T:System.UnauthorizedAccessException">Thrown if the caller does not have the required permissions to create or open the file,
|
||||
or the file is read-only.</exception>
|
||||
<exception cref="T:System.IO.FileNotFoundException">Thrown if a file could not be found to open at the specified path.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown if the path was not supplied.</exception>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.ReadAllAsText">
|
||||
<summary>
|
||||
Reads the entire contents of this text file, and returns it as a string.
|
||||
</summary>
|
||||
<returns>The contents of this text file as a string, null if it could not be read or there
|
||||
was an error while reading.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.ReadAllAsText(System.String)">
|
||||
<summary>
|
||||
Reads the entire contents of a text file, and returns it as a string.
|
||||
</summary>
|
||||
<param name="path">The path to the file to read.</param>
|
||||
<returns>The contents of the text file as a string, null if it could not be read or there
|
||||
was an error while reading.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.ReadAllAsText(System.IO.FileStream)">
|
||||
<summary>
|
||||
Reads the entire contents of a text file, and returns it as a string.
|
||||
</summary>
|
||||
<param name="stream">The file stream to read from.</param>
|
||||
<returns>The text read, null if an error occurred while reading.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.ReadLine">
|
||||
<summary>
|
||||
Reads a line of text from this file.
|
||||
</summary>
|
||||
<returns>The line of text read, null if an error occurred while reading.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.ReadLine(System.IO.FileStream,System.IO.StreamReader@)">
|
||||
<summary>
|
||||
Reads a line of text from a file's stream.
|
||||
</summary>
|
||||
<param name="stream">The file stream to read from.</param>
|
||||
<param name="reader">A stream reader used when reading from the file. Useful for successive calls to ReadLine.</param>
|
||||
<returns>The line of text read, null if an error occurred while reading.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.RemoveAllExplicitAccessRules(System.Boolean)">
|
||||
<summary>
|
||||
Removes all explicit access rules from this file.
|
||||
</summary>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this file. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was removed. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.RemoveAllExplicitAccessRules(System.String,System.Security.AccessControl.FileSecurity@,System.Boolean)">
|
||||
<summary>
|
||||
Removes all explicit access rules from the supplied file.
|
||||
</summary>
|
||||
<param name="path">The path to the file to have access removed on.</param>
|
||||
<param name="security">The FileSecurity object of the file once changed.</param>
|
||||
<param name="commitChanges">Indicates whether changes should be commited to this file. Useful when combining multiple commands.</param>
|
||||
<returns>True if access was removed. False otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.WriteLine(System.String)">
|
||||
<summary>
|
||||
Writes a line of text to the file.
|
||||
</summary>
|
||||
<param name="line">The line of text to write.</param>
|
||||
<returns>True if the line was written, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.FileSystem.File.WriteLine(System.IO.FileStream,System.String)">
|
||||
<summary>
|
||||
Writes a line of text to the specified file stream.
|
||||
</summary>
|
||||
<param name="stream">The file stream to write to.</param>
|
||||
<param name="line">The line of text to write.</param>
|
||||
<returns>True if the line was written, false otherwise.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Galactic.LDAP.1.3.0.499/.signature.p7s
vendored
Normal file
BIN
packages/Galactic.LDAP.1.3.0.499/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.LDAP.1.3.0.499/Galactic.LDAP.1.3.0.499.nupkg
vendored
Normal file
BIN
packages/Galactic.LDAP.1.3.0.499/Galactic.LDAP.1.3.0.499.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Galactic.LDAP.1.3.0.499/lib/Galactic.LDAP.dll
vendored
Normal file
BIN
packages/Galactic.LDAP.1.3.0.499/lib/Galactic.LDAP.dll
vendored
Normal file
Binary file not shown.
170
packages/Galactic.LDAP.1.3.0.499/lib/Galactic.LDAP.xml
vendored
Normal file
170
packages/Galactic.LDAP.1.3.0.499/lib/Galactic.LDAP.xml
vendored
Normal file
@@ -0,0 +1,170 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Galactic.LDAP</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="F:Galactic.LDAP.LDAP.LDAP_PORT">
|
||||
<summary>
|
||||
The default unencrypted port used for LDAP servers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.LDAP.LDAP.LDAP_SSL_PORT">
|
||||
<summary>
|
||||
The default SSL encrypted port for LDAP servers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Galactic.LDAP.LDAP.DEFAULT_QUERY_PAGE_SIZE">
|
||||
<summary>
|
||||
The default size of pages returned when making large queries.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.LDAP.LDAP.NamingContexts">
|
||||
<summary>
|
||||
The Naming Contexts (The base DNs that this server hosts.) for the LDAP server as defined in the RootDSE entry.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.LDAP.LDAP.AlternateServers">
|
||||
<summary>
|
||||
A list of other servers that can fulfill LDAP requests if the one we're connected to becomes unavailable.
|
||||
May be null if there are no other servers available.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Galactic.LDAP.LDAP.RootDSE">
|
||||
<summary>
|
||||
The rootDSE entry for the connected LDAP server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.#ctor(System.Collections.Generic.List{System.String},System.Int32,System.DirectoryServices.Protocols.AuthType,System.String,System.Security.SecureString,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Establishes a connection with an LDAP server that can be used to query or modify its contents.
|
||||
<param name="servers">A list of servers by fully qualified domain name, host name, ip address, or null.</param>
|
||||
<param name="portNumber">The port number on the LDAP server that is listening for requests.</param>
|
||||
<param name="authType">(Optional) The type of authentication to use when connecting with the server. By default this is set to Anonymous (i.e. no credentials required).</param>
|
||||
<param name="userName">(Optional) The user name to use when connecting to the LDAP server.</param>
|
||||
<param name="password">(Optional) The password to use with the user name provided to connect to the LDAP server.</param>
|
||||
<param name="domainName">(Optional) The domain or computer name associated with the user credentials provided.</param>
|
||||
<param name="useLogonCredentials">(Optional) If enabled, the LDAP connection will use the logon credentials from the current session. Disabled by default.</param>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.Dispose">
|
||||
<summary>
|
||||
Closes the LDAP connection and frees all resources associated with it.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.Search(System.String,System.Collections.Generic.List{System.String},System.String,System.DirectoryServices.Protocols.SearchScope,System.Int32,System.Boolean)">
|
||||
<summary>
|
||||
Searches the LDAP directory for entries that match the specified search filter.
|
||||
</summary>
|
||||
<param name="filter">The filter that defines the entries to find.</param>
|
||||
<param name="attributes">(Optional) The attributes that should be returned in each entry found. </param>
|
||||
<param name="baseDn">(Optional)The distinguished name of the base entry where the search will begin. (Typically an OU or the base DN of the directory.) If not supplied, the default values will be used. This base is used only for the duration of this search.</param>
|
||||
<param name="scope">(Optional) The scope to use while searching. Defaults to Subtree. (Typically Base, just the object with the DN specified; OneLevel, just the child objects of the base object; or Subtree, the base object and all child objects) This scope is used only for the duration of this search.</param>
|
||||
<param name="queryPageSize">(Optional) The query page size to specify when making large requests. Defaults to DEFAULT_QUERY_PAGE_SIZE.</param>
|
||||
<param name="chaseReferrals">(Optional) Whether the search should chase object referrals to other servers if necessary. Defaults to true;</param>
|
||||
<returns>A collection of search result entries found, or null if there was an error with the search.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.Add(System.String,System.DirectoryServices.Protocols.DirectoryAttribute[])">
|
||||
<summary>
|
||||
Adds an entry to the LDAP directory with the specified distinguished name and attributes.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to add.</param>
|
||||
<param name="attributes">The attributes for the entry to add.</param>
|
||||
<returns>True if added, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.AddOrReplaceAttribute(System.String,System.String,System.Object[])">
|
||||
<summary>
|
||||
Adds or Replaces an attribute's value in the specified entry in the directory.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to add or replace an attribute of.</param>
|
||||
<param name="attributeName">The name of the attribute to add or replace a value for.</param>
|
||||
<param name="values">The values associated with the attribute to add or replace.</param>
|
||||
<returns>True if added or replaced, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.Delete(System.String)">
|
||||
<summary>
|
||||
Deletes an entry from the LDAP directory with the specified distinguished name.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to delete.</param>
|
||||
<returns>True if deleted, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.DeleteAttribute(System.String,System.String,System.Object[])">
|
||||
<summary>
|
||||
Deletes an attribute's value in the specified entry in the directory.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to delete an attribute from.</param>
|
||||
<param name="attributeName">The name of the attribute to delete.</param>
|
||||
<param name="values">Optional: The specific values to delete (if desired). Supplying null will delete all values associated with the attribute.</param>
|
||||
<returns>True if deleted, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.GetByteAttributeValue(System.String,System.DirectoryServices.Protocols.SearchResultEntry)">
|
||||
<summary>
|
||||
Gets the first byte array attribute value from the supplied entry.
|
||||
</summary>
|
||||
<param name="name">The name of the attribute to retrieve.</param>
|
||||
<param name="entry">The SearchResultEntry to get the attribute value from.</param>
|
||||
<returns>A first byte value held in the attribute, or null array if there was an error retrieving the value or the attribute was empty.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.GetByteAttributeValues(System.String,System.DirectoryServices.Protocols.SearchResultEntry)">
|
||||
<summary>
|
||||
Gets all byte array attribute values from the supplied entry.
|
||||
</summary>
|
||||
<param name="name">The name of the attribute to retrieve.</param>
|
||||
<param name="entry">The SearchResultEntry to get the attribute value from.</param>
|
||||
<returns>A list of byte values held in the attribute, or null if there was an error retrieving the values or the attribute was empty.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.GetEntryByDistinguishedName(System.String,System.Collections.Generic.List{System.String},System.String,System.DirectoryServices.Protocols.SearchScope)">
|
||||
<summary>
|
||||
Gets an entry from the directory with the specified distinguished name.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to retrieve.</param>
|
||||
<param name="attributes">(Optional) The attributes that should be returned in each entry found. If not provided, all attributes are returned.</param>
|
||||
<param name="baseDn">(Optional)The distinguished name of the base entry where the search will begin. (Typically an OU or the base DN of the directory.) If not supplied, the default values will be used. This base is used only for the duration of this search.</param>
|
||||
<param name="scope">(Optional) The scope to use while searching. Defaults to Subtree. (Typically Base, just the object with the DN specified; OneLevel, just the child objects of the base object; or Subtree, the base object and all child objects) This scope is used only for the duration of this search.</param>
|
||||
<returns>The entry with the specified distinguished name or null if the entry does not exist or there was an error in its retrieval.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.GetStringAttributeValue(System.String,System.DirectoryServices.Protocols.SearchResultEntry)">
|
||||
<summary>
|
||||
Gets the first string attribute value from the supplied entry.
|
||||
</summary>
|
||||
<param name="name">The name of the attribute to retrieve.</param>
|
||||
<param name="entry">The SearchResultEntry to get the attribute value from.</param>
|
||||
<returns>A first string value held in the attribute, or null if there was an error retrieving the value or the attribute was empty.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.GetStringAttributeValues(System.String,System.DirectoryServices.Protocols.SearchResultEntry)">
|
||||
<summary>
|
||||
Gets all string attribute values from the supplied entry.
|
||||
</summary>
|
||||
<param name="name">The name of the attribute to retrieve.</param>
|
||||
<param name="entry">The SearchResultEntry to get the attribute value from.</param>
|
||||
<returns>A list of string values held in the attribute, or null if there was an error retrieving the values or the attribute was empty.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.MoveRenameEntry(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Moves and / or renames an entry in the directory.
|
||||
</summary>
|
||||
<param name="distinguishedName">The distinguished name of the entry to move or rename.</param>
|
||||
<param name="newParentDistinguishedName">The distinguished name of the entry's new parent entry in the directory (if moving), or its current parent entry (if renaming).</param>
|
||||
<param name="newCommonName">The new common name of entry.</param>
|
||||
<returns>True if moved or renamed, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.ReplaceAttribute(System.String,System.String,System.Object[])">
|
||||
<summary>
|
||||
Replace an attribute's value in the specified entry in the directory, or replaces all values in a multivalued entry.
|
||||
</summary>
|
||||
<param name="dn">The distinguished name of the entry to replace the attribute value of.</param>
|
||||
<param name="attributeName">The name of the attribute to replace.</param>
|
||||
<param name="values">The values associated with the attribute to replace.</param>
|
||||
<returns>True if replaced, false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Galactic.LDAP.LDAP.SetSearchBaseAndScope(System.String,System.DirectoryServices.Protocols.SearchScope)">
|
||||
<summary>
|
||||
Sets the object that is the base for all searches, as well as the scope of the searches.
|
||||
This only needs to be set if you need to search somewhere other than the base of the directory, or with a scope other than subtree.
|
||||
</summary>
|
||||
<param name="distinguishedName">The distinguished name of the object where searches will begin. (Typically an OU or the base DN of the directory.)</param>
|
||||
<param name="scope">(Optional) The scope to use while searching. Defaults to Subtree. (Typically Base, just the object with the DN specified; OneLevel, just the child objects of the base object; or Subtree, the base object and all child objects)</param>
|
||||
<returns>True if the search base and scope were set, false otherwise.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
packages/Horseshoe.NET.1.2.1/.signature.p7s
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/Horseshoe.NET.1.2.1.nupkg
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/Horseshoe.NET.1.2.1.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/horseshoe-icon-256x256.png
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/horseshoe-icon-256x256.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
BIN
packages/Horseshoe.NET.1.2.1/lib/net45/Horseshoe.NET (net4x).dll
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/net45/Horseshoe.NET (net4x).dll
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/lib/net45/Horseshoe.NET (net4x).pdb
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/net45/Horseshoe.NET (net4x).pdb
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/lib/net461/Horseshoe.NET (net4x).dll
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/net461/Horseshoe.NET (net4x).dll
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/lib/net461/Horseshoe.NET (net4x).pdb
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/net461/Horseshoe.NET (net4x).pdb
vendored
Normal file
Binary file not shown.
281
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).deps.json
vendored
Normal file
281
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).deps.json
vendored
Normal file
@@ -0,0 +1,281 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETStandard,Version=v2.0/",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETStandard,Version=v2.0": {},
|
||||
".NETStandard,Version=v2.0/": {
|
||||
"Horseshoe.NET (netstandard2.0)/1.2.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.0.0",
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.0.0",
|
||||
"NETStandard.Library": "2.0.3",
|
||||
"Newtonsoft.Json": "12.0.3",
|
||||
"System.Text.Json": "5.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Horseshoe.NET (netstandard2.0).dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Threading.Tasks.Extensions": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.0"
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "12.0.0.0",
|
||||
"fileVersion": "12.0.3.23909"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Buffers.dll": {
|
||||
"assemblyVersion": "4.0.3.0",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Memory/4.5.4": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Memory.dll": {
|
||||
"assemblyVersion": "4.0.1.1",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Numerics.Vectors.dll": {
|
||||
"assemblyVersion": "4.1.4.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encodings.Web/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Memory": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encodings.Web.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/5.0.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "5.0.0",
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Memory": "4.5.4",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
|
||||
"System.Text.Encodings.Web": "5.0.0",
|
||||
"System.Threading.Tasks.Extensions": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Json.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.220.61120"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Threading.Tasks.Extensions/4.5.4": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
|
||||
"assemblyVersion": "4.2.0.1",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Horseshoe.NET (netstandard2.0)/1.2.1": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
|
||||
"path": "microsoft.bcl.asyncinterfaces/5.0.0",
|
||||
"hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==",
|
||||
"path": "microsoft.extensions.configuration/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-IznHHzGUtrdpuQqIUdmzF6TYPcsYHONhHh3o9dGp39sX/9Zfmt476UnhvU0UhXgJnXXAikt/MpN6AuSLCCMdEQ==",
|
||||
"path": "microsoft.extensions.configuration.binder/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
|
||||
"path": "microsoft.extensions.primitives/2.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
|
||||
"path": "microsoft.netcore.platforms/1.1.0",
|
||||
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
|
||||
},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
|
||||
"path": "netstandard.library/2.0.3",
|
||||
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
|
||||
"path": "newtonsoft.json/12.0.3",
|
||||
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||
"path": "system.buffers/4.5.1",
|
||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.Memory/4.5.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
|
||||
"path": "system.memory/4.5.4",
|
||||
"hashPath": "system.memory.4.5.4.nupkg.sha512"
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
||||
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encodings.Web/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==",
|
||||
"path": "system.text.encodings.web/5.0.0",
|
||||
"hashPath": "system.text.encodings.web.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/5.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/UM3UK1dXKl8Ybysg/21gM4S8DJgkR+yLU8JwqCVbuNqQNImelntgYFAN5QxR8sJJ1kMx//hOUdf0lltosi8cQ==",
|
||||
"path": "system.text.json/5.0.1",
|
||||
"hashPath": "system.text.json.5.0.1.nupkg.sha512"
|
||||
},
|
||||
"System.Threading.Tasks.Extensions/4.5.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
|
||||
"path": "system.threading.tasks.extensions/4.5.4",
|
||||
"hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).dll
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).dll
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).pdb
vendored
Normal file
BIN
packages/Horseshoe.NET.1.2.1/lib/netstandard2.0/Horseshoe.NET (netstandard2.0).pdb
vendored
Normal file
Binary file not shown.
27
packages/Horseshoe.NET.1.2.1/license.txt
vendored
Normal file
27
packages/Horseshoe.NET.1.2.1/license.txt
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020 Greenhazel Studio
|
||||
|
||||
Applies to all software, compiled or otherwise, distributed by me on
|
||||
nuget.org, http://greenhazelstudio.com or https://github.com/GreenhazelStudio/.
|
||||
For example, Horseshoe.NET distributables (e.g. NuGet packages) along with the
|
||||
source code as well as any and all incidentals published by me such as JavaScript
|
||||
scripts, code samples, blogs, documentation, instructional videos, etc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/.signature.p7s
vendored
Normal file
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/.signature.p7s
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/Horseshoe.NET.ActiveDirectory.1.2.1.nupkg
vendored
Normal file
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/Horseshoe.NET.ActiveDirectory.1.2.1.nupkg
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/horseshoe-icon-256x256.png
vendored
Normal file
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/horseshoe-icon-256x256.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 88 KiB |
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/lib/net45/Horseshoe.NET.ActiveDirectory (net45).dll
vendored
Normal file
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/lib/net45/Horseshoe.NET.ActiveDirectory (net45).dll
vendored
Normal file
Binary file not shown.
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/lib/net45/Horseshoe.NET.ActiveDirectory (net45).pdb
vendored
Normal file
BIN
packages/Horseshoe.NET.ActiveDirectory.1.2.1/lib/net45/Horseshoe.NET.ActiveDirectory (net45).pdb
vendored
Normal file
Binary file not shown.
@@ -0,0 +1,406 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETStandard,Version=v2.0/",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETStandard,Version=v2.0": {},
|
||||
".NETStandard,Version=v2.0/": {
|
||||
"Horseshoe.NET.ActiveDirectory (netstandard2.0)/1.2.1": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": "2.0.3",
|
||||
"System.DirectoryServices": "5.0.0",
|
||||
"System.DirectoryServices.AccountManagement": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Horseshoe.NET.ActiveDirectory (netstandard2.0).dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Threading.Tasks.Extensions": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.0.0.17205"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.0"
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "12.0.0.0",
|
||||
"fileVersion": "12.0.3.23909"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Buffers.dll": {
|
||||
"assemblyVersion": "4.0.3.0",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.IO.FileSystem.AccessControl": "5.0.0",
|
||||
"System.Security.AccessControl": "5.0.0",
|
||||
"System.Security.Permissions": "5.0.0",
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.DirectoryServices.AccountManagement/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Memory": "4.5.4",
|
||||
"System.Security.AccessControl": "5.0.0",
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Memory/4.5.4": {
|
||||
"dependencies": {
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Memory.dll": {
|
||||
"assemblyVersion": "4.0.1.1",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Numerics.Vectors.dll": {
|
||||
"assemblyVersion": "4.1.4.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.AccessControl/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Security.Principal.Windows": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Security.AccessControl.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.Permissions/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Security.Permissions.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.Principal.Windows/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encodings.Web/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Memory": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encodings.Web.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Json/5.0.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Bcl.AsyncInterfaces": "5.0.0",
|
||||
"System.Buffers": "4.5.1",
|
||||
"System.Memory": "4.5.4",
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
|
||||
"System.Text.Encodings.Web": "5.0.0",
|
||||
"System.Threading.Tasks.Extensions": "4.5.4"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Json.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.220.61120"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Threading.Tasks.Extensions/4.5.4": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
|
||||
"assemblyVersion": "4.2.0.1",
|
||||
"fileVersion": "4.6.28619.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Horseshoe.NET (netstandard2.0)/1.2.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration": "2.0.0",
|
||||
"Microsoft.Extensions.Configuration.Binder": "2.0.0",
|
||||
"Newtonsoft.Json": "12.0.3",
|
||||
"System.Text.Json": "5.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"Horseshoe.NET (netstandard2.0).dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Horseshoe.NET.ActiveDirectory (netstandard2.0)/1.2.1": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Bcl.AsyncInterfaces/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
|
||||
"path": "microsoft.bcl.asyncinterfaces/5.0.0",
|
||||
"hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SsI4RqI8EH00+cYO96tbftlh87sNUv1eeyuBU1XZdQkG0RrHAOjWgl7P0FoLeTSMXJpOnfweeOWj2d1/5H3FxA==",
|
||||
"path": "microsoft.extensions.configuration/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rHFrXqMIvQNq51H8RYTO4IWmDOYh8NUzyqGlh0xHWTP6XYnKk7Ryinys2uDs+Vu88b3AMlM3gBBSs78m6OQpYQ==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Binder/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-IznHHzGUtrdpuQqIUdmzF6TYPcsYHONhHh3o9dGp39sX/9Zfmt476UnhvU0UhXgJnXXAikt/MpN6AuSLCCMdEQ==",
|
||||
"path": "microsoft.extensions.configuration.binder/2.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
|
||||
"path": "microsoft.extensions.primitives/2.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
|
||||
"path": "microsoft.netcore.platforms/1.1.0",
|
||||
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
|
||||
},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
|
||||
"path": "netstandard.library/2.0.3",
|
||||
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/12.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
|
||||
"path": "newtonsoft.json/12.0.3",
|
||||
"hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
|
||||
},
|
||||
"System.Buffers/4.5.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||
"path": "system.buffers/4.5.1",
|
||||
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==",
|
||||
"path": "system.directoryservices/5.0.0",
|
||||
"hashPath": "system.directoryservices.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.DirectoryServices.AccountManagement/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1WevH/8ULy0iixbsZW4k8ftV9fDqkeUJfeVMsJ7SySrHsnBISkRx1JuDRRV7QXfNTCQKrHeecfqcY5pevlDwog==",
|
||||
"path": "system.directoryservices.accountmanagement/5.0.0",
|
||||
"hashPath": "system.directoryservices.accountmanagement.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.IO.FileSystem.AccessControl/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
|
||||
"path": "system.io.filesystem.accesscontrol/5.0.0",
|
||||
"hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Memory/4.5.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
|
||||
"path": "system.memory/4.5.4",
|
||||
"hashPath": "system.memory.4.5.4.nupkg.sha512"
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
|
||||
"path": "system.runtime.compilerservices.unsafe/5.0.0",
|
||||
"hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.AccessControl/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
|
||||
"path": "system.security.accesscontrol/5.0.0",
|
||||
"hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Permissions/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==",
|
||||
"path": "system.security.permissions/5.0.0",
|
||||
"hashPath": "system.security.permissions.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Principal.Windows/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
|
||||
"path": "system.security.principal.windows/5.0.0",
|
||||
"hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encodings.Web/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-EEslUvHKll1ftizbn20mX3Ix/l4Ygk/bdJ2LY6/X6FlGaP0RIhKMo9nS6JIGnKKT6KBP2PGj6JC3B9/ZF6ErqQ==",
|
||||
"path": "system.text.encodings.web/5.0.0",
|
||||
"hashPath": "system.text.encodings.web.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Json/5.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-/UM3UK1dXKl8Ybysg/21gM4S8DJgkR+yLU8JwqCVbuNqQNImelntgYFAN5QxR8sJJ1kMx//hOUdf0lltosi8cQ==",
|
||||
"path": "system.text.json/5.0.1",
|
||||
"hashPath": "system.text.json.5.0.1.nupkg.sha512"
|
||||
},
|
||||
"System.Threading.Tasks.Extensions/4.5.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
|
||||
"path": "system.threading.tasks.extensions/4.5.4",
|
||||
"hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
|
||||
},
|
||||
"Horseshoe.NET (netstandard2.0)/1.2.1": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
27
packages/Horseshoe.NET.ActiveDirectory.1.2.1/license.txt
vendored
Normal file
27
packages/Horseshoe.NET.ActiveDirectory.1.2.1/license.txt
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020 Greenhazel Studio
|
||||
|
||||
Applies to all software, compiled or otherwise, distributed by me on
|
||||
nuget.org, http://greenhazelstudio.com or https://github.com/GreenhazelStudio/.
|
||||
For example, Horseshoe.NET distributables (e.g. NuGet packages) along with the
|
||||
source code as well as any and all incidentals published by me such as JavaScript
|
||||
scripts, code samples, blogs, documentation, instructional videos, etc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
BIN
packages/Microsoft.Extensions.Logging.Abstractions.2.2.0/.signature.p7s
vendored
Normal file
BIN
packages/Microsoft.Extensions.Logging.Abstractions.2.2.0/.signature.p7s
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,708 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Extensions.Logging.Abstractions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Extensions.Logging.IExternalScopeProvider">
|
||||
<summary>
|
||||
Represents a storage of common scope data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
|
||||
<summary>
|
||||
Executes callback for each currently active scope objects in order of creation.
|
||||
All callbacks are guaranteed to be called inline from this method.
|
||||
</summary>
|
||||
<param name="callback">The callback to be executed for every scope object</param>
|
||||
<param name="state">The state object to be passed into the callback</param>
|
||||
<typeparam name="TState"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)">
|
||||
<summary>
|
||||
Adds scope object to the list
|
||||
</summary>
|
||||
<param name="state">The scope object</param>
|
||||
<returns>The <see cref="T:System.IDisposable"/> token that removes scope on dispose.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILogger">
|
||||
<summary>
|
||||
Represents a type used to perform logging.
|
||||
</summary>
|
||||
<remarks>Aggregates most logging patterns to a single method.</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<summary>
|
||||
Writes a log entry.
|
||||
</summary>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">Id of the event.</param>
|
||||
<param name="state">The entry to be written. Can be also an object.</param>
|
||||
<param name="exception">The exception related to this entry.</param>
|
||||
<param name="formatter">Function to create a <c>string</c> message of the <paramref name="state"/> and <paramref name="exception"/>.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<summary>
|
||||
Checks if the given <paramref name="logLevel"/> is enabled.
|
||||
</summary>
|
||||
<param name="logLevel">level to be checked.</param>
|
||||
<returns><c>true</c> if enabled.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)">
|
||||
<summary>
|
||||
Begins a logical operation scope.
|
||||
</summary>
|
||||
<param name="state">The identifier for the scope.</param>
|
||||
<returns>An IDisposable that ends the logical operation scope on dispose.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILoggerFactory">
|
||||
<summary>
|
||||
Represents a type used to configure the logging system and create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from
|
||||
the registered <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>s.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
|
||||
</summary>
|
||||
<param name="categoryName">The category name for messages produced by the logger.</param>
|
||||
<returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
|
||||
<summary>
|
||||
Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> to the logging system.
|
||||
</summary>
|
||||
<param name="provider">The <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILogger`1">
|
||||
<summary>
|
||||
A generic interface for logging where the category name is derived from the specified
|
||||
<typeparamref name="TCategoryName"/> type name.
|
||||
Generally used to enable activation of a named <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from dependency injection.
|
||||
</summary>
|
||||
<typeparam name="TCategoryName">The type who's name is used for the logger category name.</typeparam>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILoggerProvider">
|
||||
<summary>
|
||||
Represents a type that can create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
|
||||
</summary>
|
||||
<param name="categoryName">The category name for messages produced by the logger.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Internal.FormattedLogValues">
|
||||
<summary>
|
||||
LogValues to enable formatting options supported by <see cref="M:string.Format"/>.
|
||||
This also enables using {NamedformatItem} in the format string.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Internal.LogValuesFormatter">
|
||||
<summary>
|
||||
Formatter to convert the named format items like {NamedformatItem} to <see cref="M:string.Format"/> format.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.Internal.NullScope">
|
||||
<summary>
|
||||
An empty scope without any logic
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.Internal.NullScope.Dispose">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
|
||||
<summary>
|
||||
Minimalistic logger that does nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
|
||||
<summary>
|
||||
An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> used to create instance of
|
||||
<see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> that logs nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This returns a <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> instance which logs nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This method ignores the parameter and does nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
|
||||
<summary>
|
||||
Minimalistic logger that does nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This method ignores the parameters and does nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
|
||||
<summary>
|
||||
Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Logging.Abstractions.Resource.UnexpectedNumberOfNamedParameters">
|
||||
<summary>
|
||||
The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.Resource.FormatUnexpectedNumberOfNamedParameters(System.Object,System.Object,System.Object)">
|
||||
<summary>
|
||||
The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
|
||||
<summary>
|
||||
Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> that is able to consume external scope information.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
|
||||
<summary>
|
||||
Sets external scope information source for logger provider.
|
||||
</summary>
|
||||
<param name="scopeProvider"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
|
||||
<summary>
|
||||
ILogger extension methods for common scenarios.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats the message and creates a scope.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to create the scope in.</param>
|
||||
<param name="messageFormat">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<returns>A disposable scope object. Can be null.</returns>
|
||||
<example>
|
||||
using(logger.BeginScope("Processing request from {Address}", address))
|
||||
{
|
||||
}
|
||||
</example>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
|
||||
<summary>
|
||||
Default implemenation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
|
||||
<summary>
|
||||
ILoggerFactory extension methods for common scenarios.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Creates a new ILogger instance using the full name of the given type.
|
||||
</summary>
|
||||
<typeparam name="T">The type.</typeparam>
|
||||
<param name="factory">The factory.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
|
||||
<summary>
|
||||
Creates a new ILogger instance using the full name of the given type.
|
||||
</summary>
|
||||
<param name="factory">The factory.</param>
|
||||
<param name="type">The type.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerMessage">
|
||||
<summary>
|
||||
Creates delegates which can be later cached to log messages in a performant way.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Logger`1">
|
||||
<summary>
|
||||
Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type, created by the
|
||||
provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.
|
||||
</summary>
|
||||
<typeparam name="T">The type.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1"/>.
|
||||
</summary>
|
||||
<param name="factory">The factory.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LogLevel">
|
||||
<summary>
|
||||
Defines logging severity levels.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
|
||||
<summary>
|
||||
Logs that contain the most detailed messages. These messages may contain sensitive application data.
|
||||
These messages are disabled by default and should never be enabled in a production environment.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
|
||||
<summary>
|
||||
Logs that are used for interactive investigation during development. These logs should primarily contain
|
||||
information useful for debugging and have no long-term value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
|
||||
<summary>
|
||||
Logs that track the general flow of the application. These logs should have long-term value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
|
||||
<summary>
|
||||
Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
|
||||
application execution to stop.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
|
||||
<summary>
|
||||
Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
|
||||
failure in the current activity, not an application-wide failure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
|
||||
<summary>
|
||||
Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
|
||||
immediate attention.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.None">
|
||||
<summary>
|
||||
Not used for writing log messages. Specifies that a logging category should not write any messages.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Reference in New Issue
Block a user