diff --git a/CapyKit/CapyEvent.cs b/CapyKit/CapyEvent.cs index 607734e..f088a9a 100644 --- a/CapyKit/CapyEvent.cs +++ b/CapyKit/CapyEvent.cs @@ -78,7 +78,8 @@ namespace CapyKit /// Emits an event with the given severity level, message, and method name. /// /// In order to allow for efficient calling member access via - /// , it is suggested that is defined explicitly for formatted messages. + /// , + /// it is suggested that is defined explicitly for formatted messages. /// /// The severity level of the event. /// @@ -92,9 +93,8 @@ namespace CapyKit /// A variable-length parameters list containing arguments for formatting the message. /// /// - /// - /// CapyEventReporter.EmitEvent(EventLevel.Error, "Could not find the description for {0}.", args: new[] { enumeration }); - /// + /// CapyEventReporter.EmitEvent(EventLevel.Error, "Could not find the description for {0}.", + /// args: new[] { enumeration }); /// /// internal static void EmitEvent(EventLevel eventLevel, string message, [CallerMemberName] string method = null, params object[] args) diff --git a/CapyKit/Enumerations/MeasurementSystem.cs b/CapyKit/Enumerations/MeasurementSystem.cs deleted file mode 100644 index 333930d..0000000 --- a/CapyKit/Enumerations/MeasurementSystem.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CapyKit.Enumerations -{ - /// - /// An enumeration representing different measurement systems. - /// - public enum MeasurementSystem - { - /// The imperial measurement system. - Imperial = 0, - - /// The metric measurement system. - Metric = 1 - } -} diff --git a/CapyKit/Helpers/CalculationHelper.cs b/CapyKit/Helpers/CalculationHelper.cs deleted file mode 100644 index 63e667f..0000000 --- a/CapyKit/Helpers/CalculationHelper.cs +++ /dev/null @@ -1,160 +0,0 @@ -using CapyKit.Enumerations; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Security.Cryptography; -using System.Text; -using System.Threading.Tasks; - -namespace CapyKit.Helpers -{ - /// Static class providing helper methods for various calculations. - public static class CalculationHelper - { - #region Members - - /// The earth's radius in kilometers. - public const int EARTH_RADIUS_KILOMETERS = 6371; - - /// Ratio of miles per kilometer . - public const double MILES_PER_KILOMETER = 0.621371; - - /// The valid hexidecimal characters. - private const string chars = "0123456789ABCDEF"; - - #endregion Members - - #region Methods - - /// - /// Calculates the hash of a given string using an value as the first 32 bits. - /// - /// The string to be hashed. - /// The calculated hash. - /// - /// This method is used for a quick and consistent hash function. It should not be considered - /// cryptographically sound or used in security contexts. - /// - public static int CalculateHash(string str) - { - MD5 md5Hasher = MD5.Create(); - var md5Hash = md5Hasher.ComputeHash(Encoding.UTF8.GetBytes(str)); - var hash = BitConverter.ToInt32(md5Hash, 0); - - return hash; - } - - /// Calculates the hexadecimal hash. - /// The string to be hashed. - /// The calculated 16 character hexadecimal hash. - public static string CalculateHexHash(string str) - { - byte[] bytes = Encoding.UTF8.GetBytes(str); - - MD5 md5Hasher = MD5.Create(); - byte[] hash = md5Hasher.ComputeHash(bytes); - - char[] hash2 = new char[16]; - - // Note that here we are wasting bits of hash! - // But it isn't really important, because hash.Length == 32 - for (int i = 0; i < hash2.Length; i++) - { - hash2[i] = CalculationHelper.chars[hash[i] % CalculationHelper.chars.Length]; - } - - return new string(hash2); - } - - /// - /// Gets the distance between two points on earth using the haversine formula. - /// - /// The latitude origin. - /// The longitude origin. - /// The latitude destination. - /// The longitude destination. - /// (Optional) The measurement system. - /// The distance. - /// - /// Uses the haversine formula - /// to calculate the "as-the-crow-flies" distance between two points on earth. - /// - /// - public static decimal GetDistance(decimal latitudeOrigin, decimal longitudeOrigin, decimal latitudeDestination, decimal longitudeDestination, MeasurementSystem measurementSystem = MeasurementSystem.Imperial) - { - double latitudeOriginalDouble = Convert.ToDouble(latitudeOrigin); - double longitudeOriginDouble = Convert.ToDouble(longitudeOrigin); - double latitudeDestinationDouble = Convert.ToDouble(latitudeDestination); - double longitudeDestinationDouble = Convert.ToDouble(longitudeDestination); - - var result = GetDistance(latitudeOriginalDouble, longitudeOriginDouble, latitudeDestinationDouble, longitudeDestinationDouble, measurementSystem); - - return Convert.ToDecimal(result); - } - - /// Gets the distance between two points on earth using the haversine formula. - /// The latitude of the origin. - /// The longitude of the origin. - /// The latitude destination. - /// The longitude destination. - /// (Optional) The measurement system. - /// The distance. - /// - /// Uses the haversine formula - /// to calculate the "as-the-crow-flies" distance between two points on earth. - /// - public static double GetDistance(double latitudeOrigin, double longitudeOrigin, double latitudeDestination, double longitudeDestination, MeasurementSystem measurementSystem = MeasurementSystem.Imperial) - { - var thetaLatitude = DegreesToRadians(latitudeOrigin); - var thetaLongitude = DegreesToRadians(longitudeOrigin); - var deltaLatitude = DegreesToRadians(latitudeDestination - latitudeOrigin); - var deltaLongitude = DegreesToRadians(longitudeDestination - longitudeOrigin); - - var haversineTheta = Math.Sin(deltaLatitude / 2) * Math.Sin(deltaLatitude / 2) + Math.Cos(thetaLatitude) * Math.Cos(thetaLongitude) * Math.Sin(deltaLongitude / 2) * Math.Sin(deltaLongitude / 2); - var angularDistance = 2 * Math.Atan2(Math.Sqrt(haversineTheta), Math.Sqrt(1 - haversineTheta)); - - var distance = EARTH_RADIUS_KILOMETERS * angularDistance; - - if (measurementSystem == MeasurementSystem.Imperial) - { - return KilometersToMiles(distance); - } - - return distance; - } - - /// Converts kilometers to miles. - /// The value in kilometers. - /// The value in miles. - public static double KilometersToMiles(double kilometers) - { - return kilometers * MILES_PER_KILOMETER; - } - - /// Converts miles to kilometers. - /// The value in miles. - /// The value in kilometers. - public static double MilesToKilometers(double miles) - { - return miles / MILES_PER_KILOMETER; - } - - /// Convers degrees to radians. - /// The degree value. - /// The value as radians. - public static double DegreesToRadians(double degrees) - { - return degrees * Math.PI / 180.0; - } - - /// Converts radians to degrees. - /// The radian value. - /// The value as degrees. - public static double RadiansToDegrees(double radians) - { - return radians * 180.0 / Math.PI; - } - - #endregion Methods - } -} diff --git a/CapyKit/Helpers/LanguageHelper.cs b/CapyKit/Helpers/LanguageHelper.cs index b8e13a9..ec68d91 100644 --- a/CapyKit/Helpers/LanguageHelper.cs +++ b/CapyKit/Helpers/LanguageHelper.cs @@ -7,18 +7,11 @@ using System.Threading.Tasks; namespace CapyKit.Helpers { - /// - /// Helper class for handling text transformations. - /// public class LanguageHelper { #region Methods - + /// Converts camel case text to human readable text. - /// - /// Camel case is a naming convention for identifiers in which the first letter of each word is - /// capitalized. - /// /// The value. /// A string in human readable format. public static string CamelCaseToHumanReadable(string value) diff --git a/CapyKit/Helpers/SettingsHelper.cs b/CapyKit/Helpers/SettingsHelper.cs deleted file mode 100644 index 77b3f6d..0000000 --- a/CapyKit/Helpers/SettingsHelper.cs +++ /dev/null @@ -1,136 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace CapyKit.Helpers -{ - /// - /// Static class containing helper methods for retrieving and setting application settings. - /// - /// - /// The specific means of accessing and storing the settings are determined by the consumer, - /// allowing for flexibility in various environments such as App.config or Web.config - /// . - /// - /// - /// This example demonstrates how to set up the SettingsHelper class with custom accessor and - /// detector methods that read from an App.config file. The setup is done at the beginning of the - /// application execution, before any other usage of the helper methods. - /// - /// public int main(string[] args) - /// { - /// // Set up SettingsHelper with custom accessor and detector methods - /// Func<string, object> accessor = (key) => - /// { - /// Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); - /// return config.AppSettings.Settings[key].Value; - /// }; - /// - /// Func<string, bool> detector = (key) => - /// { - /// Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); - /// return config.AppSettings.Settings.AllKeys.Contains(key); - /// }; - /// - /// SettingsHelper.SetAccessorMethod(accessor); - /// SettingsHelper.SetDetectorMethod(detector); - /// - /// // Use the helper to retrieve and set settings - /// SettingsHelper.SetApplicationSetting<int>("MySettingKey", 42); - /// int newSetting = SettingsHelper.GetApplicationSetting<int>("MySettingKey"); - /// Console.WriteLine("New setting: {0}", newSetting); - /// - /// int mySetting = SettingsHelper.GetApplicationSetting<int>("MySettingKey"); - /// Console.WriteLine("Retrieved setting: {0}", mySetting); - /// } - /// - /// - public static class SettingsHelper - { - #region Members - - /// - /// Private delegate function that retrieves a setting with the given key. Returns the - /// setting as an uncast . - /// - private static Func accessor = (key) => default(object); - - /// - /// Private delegate function that detects if a setting with a given key exists. Returns - /// if the setting exists, if not. - /// - private static Func detector = (key) => false; - - #endregion Members - - #region Methods - - /// - /// Retrieves a setting with the given key. Returns the setting as an uncast . - /// - /// The type of the setting to be retrieved. - /// The name of the setting to retrieve. - /// The value of the setting as an uncast . - public static T GetApplicationSetting(string settingName) - { - if (SettingsHelper.detector(settingName)) - { - var result = Convert.ChangeType(SettingsHelper.accessor(settingName), typeof(T)); - if (result is T) - { - return (T)result; - } - - return default(T); - } - - return default(T); - } - - /// Sets the function used to retrieve application settings. - /// - /// Thrown when one or more required arguments are null. - /// - /// The new function used to retrieve application settings. - public static void SetAccessorMethod(Func accessor) - { - if (accessor != null) - { - SettingsHelper.accessor = accessor; - } - else - { - var error = "Cannot set the ApplicationSettingsHelper accessor method to a null function."; - CapyEventReporter.EmitEvent(EventLevel.Error, error); - throw new ArgumentNullException(error); - } - } - - /// - /// Sets the function used to detect if an application setting with a given key exists. - /// - /// - /// Thrown when one or more required arguments are null. - /// - /// - /// The new function used to detect if an application setting exists. - /// - public static void SetDetectorMethod(Func detector) - { - if (detector != null) - { - SettingsHelper.detector = detector; - } - else - { - var error = "Cannot set the ApplicationSettingsHelper detector method to a null function."; - CapyEventReporter.EmitEvent(EventLevel.Error, error); - throw new ArgumentNullException(error); - } - } - - #endregion Methods - } -} diff --git a/Documentation/ContentLayout.content b/Documentation/ContentLayout.content index dce8e69..e3d5587 100644 --- a/Documentation/ContentLayout.content +++ b/Documentation/ContentLayout.content @@ -5,4 +5,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Documentation/Documentation.shfbproj b/Documentation/Documentation.shfbproj index d362909..08891b3 100644 --- a/Documentation/Documentation.shfbproj +++ b/Documentation/Documentation.shfbproj @@ -23,7 +23,7 @@ en-US - + @@ -47,14 +47,13 @@ 1.0.0.0 MemberName AboveNamespaces - True + False False 2 False Blank - Attributes, ExplicitInterfaceImplementations, InheritedMembers, InheritedFrameworkMembers, Internals, Privates, PrivateFields, Protected, SealedProtected, ProtectedInternalAsProtected, NonBrowsable, InternalAndPrivateIfExternal - - + Attributes, ExplicitInterfaceImplementations, InheritedMembers, InheritedFrameworkMembers, Internals, Privates, PrivateFields, Protected, SealedProtected, ProtectedInternalAsProtected, NonBrowsable + False Msdn diff --git a/Documentation/Help/7d36447b-0aab-4ce9-b5ed-e60ec5bee103.md b/Documentation/Help/7d36447b-0aab-4ce9-b5ed-e60ec5bee103.md new file mode 100644 index 0000000..2f7a7bd --- /dev/null +++ b/Documentation/Help/7d36447b-0aab-4ce9-b5ed-e60ec5bee103.md @@ -0,0 +1,17 @@ +# Version History + +The topics in this section describe the various changes made to the [TODO: Project Title] over the life of the project. + + +## Version History + +Select a version below to see a description of its changes. + + + + +## See Also + + +#### Other Resources +CapyKit - C# Utilities diff --git a/Documentation/Help/849aa079-3d64-4cf1-966f-44af23c73160.md b/Documentation/Help/849aa079-3d64-4cf1-966f-44af23c73160.md index a9b780c..d14b7b7 100644 --- a/Documentation/Help/849aa079-3d64-4cf1-966f-44af23c73160.md +++ b/Documentation/Help/849aa079-3d64-4cf1-966f-44af23c73160.md @@ -24,4 +24,4 @@ See the **Conceptual Content** topics in the Sandcastle Help File Builder's help #### Other Resources -[7d36447b-0aab-4ce9-b5ed-e60ec5bee103] +Version History diff --git a/Documentation/Help/F_CapyKit_CapyEventReporter_uniqueIdentifiers.md b/Documentation/Help/F_CapyKit_CapyEventReporter_uniqueIdentifiers.md index da508ae..32ddab5 100644 --- a/Documentation/Help/F_CapyKit_CapyEventReporter_uniqueIdentifiers.md +++ b/Documentation/Help/F_CapyKit_CapyEventReporter_uniqueIdentifiers.md @@ -7,7 +7,7 @@ A hash set storing unique identifiers for events intended to only be emitted onc ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_EARTH_RADIUS_KILOMETERS.md b/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_EARTH_RADIUS_KILOMETERS.md deleted file mode 100644 index 777c5d2..0000000 --- a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_EARTH_RADIUS_KILOMETERS.md +++ /dev/null @@ -1,31 +0,0 @@ -# EARTH_RADIUS_KILOMETERS Field - - -The earth's radius in kilometers. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public const int EARTH_RADIUS_KILOMETERS = 6371 -``` -**F#** -``` F# -static val mutable EARTH_RADIUS_KILOMETERS: int -``` - - - -#### Field Value -Int32 - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_MILES_PER_KILOMETER.md b/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_MILES_PER_KILOMETER.md deleted file mode 100644 index fdbad0f..0000000 --- a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_MILES_PER_KILOMETER.md +++ /dev/null @@ -1,31 +0,0 @@ -# MILES_PER_KILOMETER Field - - -Ratio of miles per kilometer . - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public const double MILES_PER_KILOMETER = 0.621371 -``` -**F#** -``` F# -static val mutable MILES_PER_KILOMETER: float -``` - - - -#### Field Value -Double - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_chars.md b/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_chars.md deleted file mode 100644 index 457bb61..0000000 --- a/Documentation/Help/F_CapyKit_Helpers_CalculationHelper_chars.md +++ /dev/null @@ -1,31 +0,0 @@ -# chars Field - - -The valid hexidecimal characters. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -private const string chars = "0123456789ABCDEF" -``` -**F#** -``` F# -static val mutable private chars: string -``` - - - -#### Field Value -String - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md index 4129067..38b4003 100644 --- a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md +++ b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md @@ -7,7 +7,7 @@ A string of all the lower case characters. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md index 02f1ab6..cbd26f6 100644 --- a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md +++ b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md @@ -7,7 +7,7 @@ A string of all the numeric characters. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md index c65f8b5..1e40114 100644 --- a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md +++ b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md @@ -7,7 +7,7 @@ A string of the most common non-alphanumeric characters. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md index 65e6cb5..372d274 100644 --- a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md +++ b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md @@ -7,7 +7,7 @@ A string of all the upper case characters. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_saltSize.md b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_saltSize.md index b63819b..b1ad37e 100644 --- a/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_saltSize.md +++ b/Documentation/Help/F_CapyKit_Helpers_SecurityHelper_saltSize.md @@ -7,7 +7,7 @@ Default size of the generated salt. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_accessor.md b/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_accessor.md deleted file mode 100644 index 96fa0d9..0000000 --- a/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_accessor.md +++ /dev/null @@ -1,31 +0,0 @@ -# accessor Field - - -Private delegate function that retrieves a setting with the given `key`. Returns the setting as an uncast Object. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -private static Func accessor -``` -**F#** -``` F# -static val mutable private accessor: Func -``` - - - -#### Field Value -Func(String, Object) - -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_detector.md b/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_detector.md deleted file mode 100644 index ff1f3fd..0000000 --- a/Documentation/Help/F_CapyKit_Helpers_SettingsHelper_detector.md +++ /dev/null @@ -1,31 +0,0 @@ -# detector Field - - -Private delegate function that detects if a setting with a given `key` exists. Returns true if the setting exists, false if not. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -private static Func detector -``` -**F#** -``` F# -static val mutable private detector: Func -``` - - - -#### Field Value -Func(String, Boolean) - -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/F_CapyKit_Password_algorithm.md b/Documentation/Help/F_CapyKit_Password_algorithm.md index f617eb4..102d4dc 100644 --- a/Documentation/Help/F_CapyKit_Password_algorithm.md +++ b/Documentation/Help/F_CapyKit_Password_algorithm.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md b/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md index 326a4a9..2389b15 100644 --- a/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md +++ b/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md @@ -7,7 +7,7 @@ The default number of iterations. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_LENGTH.md b/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_LENGTH.md index 496b597..4917468 100644 --- a/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_LENGTH.md +++ b/Documentation/Help/F_CapyKit_Pbkdf2Algorithm_LENGTH.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_PoolItem_1_index.md b/Documentation/Help/F_CapyKit_PoolItem_1_index.md index fd339f7..cf47098 100644 --- a/Documentation/Help/F_CapyKit_PoolItem_1_index.md +++ b/Documentation/Help/F_CapyKit_PoolItem_1_index.md @@ -7,7 +7,7 @@ The zero-based index of the pooled item. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_PoolItem_1_item.md b/Documentation/Help/F_CapyKit_PoolItem_1_item.md index b24426e..3040a0c 100644 --- a/Documentation/Help/F_CapyKit_PoolItem_1_item.md +++ b/Documentation/Help/F_CapyKit_PoolItem_1_item.md @@ -7,7 +7,7 @@ The pooled item. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_PoolItem_1_locked.md b/Documentation/Help/F_CapyKit_PoolItem_1_locked.md index d61fd4d..b139620 100644 --- a/Documentation/Help/F_CapyKit_PoolItem_1_locked.md +++ b/Documentation/Help/F_CapyKit_PoolItem_1_locked.md @@ -7,7 +7,7 @@ A flag indicating whether the item is locked or not. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_PoolItem_1_typeName.md b/Documentation/Help/F_CapyKit_PoolItem_1_typeName.md index 8c7d2be..b94c82d 100644 --- a/Documentation/Help/F_CapyKit_PoolItem_1_typeName.md +++ b/Documentation/Help/F_CapyKit_PoolItem_1_typeName.md @@ -7,7 +7,7 @@ The name of the pooled item CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Pool_1_poolItemCollection.md b/Documentation/Help/F_CapyKit_Pool_1_poolItemCollection.md index d1adbc4..59f52bf 100644 --- a/Documentation/Help/F_CapyKit_Pool_1_poolItemCollection.md +++ b/Documentation/Help/F_CapyKit_Pool_1_poolItemCollection.md @@ -7,7 +7,7 @@ The collection of pooled items. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_Pool_1_poolSize.md b/Documentation/Help/F_CapyKit_Pool_1_poolSize.md index f80dc82..06e62da 100644 --- a/Documentation/Help/F_CapyKit_Pool_1_poolSize.md +++ b/Documentation/Help/F_CapyKit_Pool_1_poolSize.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/F_CapyKit_PropertyComparer_2_expression.md b/Documentation/Help/F_CapyKit_PropertyComparer_2_expression.md index f672804..a8cba63 100644 --- a/Documentation/Help/F_CapyKit_PropertyComparer_2_expression.md +++ b/Documentation/Help/F_CapyKit_PropertyComparer_2_expression.md @@ -7,7 +7,7 @@ The expression to retrieve the property. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/Fields_T_CapyKit_Helpers_CalculationHelper.md b/Documentation/Help/Fields_T_CapyKit_Helpers_CalculationHelper.md deleted file mode 100644 index 21929a7..0000000 --- a/Documentation/Help/Fields_T_CapyKit_Helpers_CalculationHelper.md +++ /dev/null @@ -1,24 +0,0 @@ -# CalculationHelper Fields - - - - -## Fields - - - - - - - - - - -
charsThe valid hexidecimal characters.
EARTH_RADIUS_KILOMETERSThe earth's radius in kilometers.
MILES_PER_KILOMETERRatio of miles per kilometer .
- -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/Fields_T_CapyKit_Helpers_SettingsHelper.md b/Documentation/Help/Fields_T_CapyKit_Helpers_SettingsHelper.md deleted file mode 100644 index 5373038..0000000 --- a/Documentation/Help/Fields_T_CapyKit_Helpers_SettingsHelper.md +++ /dev/null @@ -1,21 +0,0 @@ -# SettingsHelper Fields - - - - -## Fields - - - - - - - -
accessorPrivate delegate function that retrieves a setting with the given key. Returns the setting as an uncast Object.
detectorPrivate delegate function that detects if a setting with a given key exists. Returns true if the setting exists, false if not.
- -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/Home.md b/Documentation/Help/Home.md index a9b780c..d14b7b7 100644 --- a/Documentation/Help/Home.md +++ b/Documentation/Help/Home.md @@ -24,4 +24,4 @@ See the **Conceptual Content** topics in the Sandcastle Help File Builder's help #### Other Resources -[7d36447b-0aab-4ce9-b5ed-e60ec5bee103] +Version History diff --git a/Documentation/Help/M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md b/Documentation/Help/M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md index f99e237..f4354e8 100644 --- a/Documentation/Help/M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md +++ b/Documentation/Help/M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md @@ -7,7 +7,7 @@ Gets the value of the enumeration represented by this attribute. ## Definition **Namespace:** CapyKit.Attributes -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md b/Documentation/Help/M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md index 1ab3c06..6205850 100644 --- a/Documentation/Help/M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md +++ b/Documentation/Help/M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the CapyKit.Attributes -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_CapyEventArgs__ctor.md b/Documentation/Help/M_CapyKit_CapyEventArgs__ctor.md index 656358a..3fe8e54 100644 --- a/Documentation/Help/M_CapyKit_CapyEventArgs__ctor.md +++ b/Documentation/Help/M_CapyKit_CapyEventArgs__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the CapyEventArgs class with the specified event l ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEvent.md b/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEvent.md index 5e1da9b..155ad7e 100644 --- a/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEvent.md +++ b/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEvent.md @@ -7,7 +7,7 @@ Emits an event with the given severity level, message, and method name. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# @@ -40,13 +40,7 @@ internal static member EmitEvent : In order to allow for efficient calling member access via CallerMemberNameAttribute , it is suggested that *args* is defined explicitly for formatted messages. ## Example - - -**C#** -``` C# CapyEventReporter.EmitEvent(EventLevel.Error, "Could not find the description for {0}.", args: new[] { enumeration }); -``` - ## See Also diff --git a/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEventOnce.md b/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEventOnce.md index 3416b8c..ebc4ed7 100644 --- a/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEventOnce.md +++ b/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEventOnce.md @@ -7,7 +7,7 @@ Emits an event with the given severity level, message, unique identifier, and me ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_CapyEventReporter_Subscribe.md b/Documentation/Help/M_CapyKit_CapyEventReporter_Subscribe.md index 6b59e8f..4cc9963 100644 --- a/Documentation/Help/M_CapyKit_CapyEventReporter_Subscribe.md +++ b/Documentation/Help/M_CapyKit_CapyEventReporter_Subscribe.md @@ -7,7 +7,7 @@ Subscribes the specified event handler to the event with the given subscription ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_CapyEventReporter_Unsubscribe.md b/Documentation/Help/M_CapyKit_CapyEventReporter_Unsubscribe.md index 9d187de..75127cb 100644 --- a/Documentation/Help/M_CapyKit_CapyEventReporter_Unsubscribe.md +++ b/Documentation/Help/M_CapyKit_CapyEventReporter_Unsubscribe.md @@ -7,7 +7,7 @@ Unsubscribes the specified event handler from the event with the given origin. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_CapyEventReporter__cctor.md b/Documentation/Help/M_CapyKit_CapyEventReporter__cctor.md index a0a3b3b..0dadc89 100644 --- a/Documentation/Help/M_CapyKit_CapyEventReporter__cctor.md +++ b/Documentation/Help/M_CapyKit_CapyEventReporter__cctor.md @@ -7,7 +7,7 @@ Initializes the static fields of the Ca ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md index 211fda4..0d8ec27 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md @@ -7,7 +7,7 @@ An CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetName.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetName.md index f16b2c8..32aa2f3 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetName.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetName.md @@ -7,7 +7,7 @@ An CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md index 1d4105f..ee9fcf0 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md @@ -7,7 +7,7 @@ An CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetValue.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetValue.md index bbe927e..7521b9f 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetValue.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_GetValue.md @@ -7,7 +7,7 @@ An CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md index 4ae73ae..fe5e19e 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md @@ -7,7 +7,7 @@ A *T* extension method that parses a string into an enumeration. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md index 4611b77..ba971a7 100644 --- a/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md +++ b/Documentation/Help/M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md @@ -7,7 +7,7 @@ A *T* extension method that parses a string into an enumeration. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Distinct__2.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Distinct__2.md index da320d0..76933c7 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Distinct__2.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Distinct__2.md @@ -7,7 +7,7 @@ Enumerates distinct items in this collection as defined by the key *property*. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1.md index 26f3f35..a7a8662 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1.md @@ -7,7 +7,7 @@ Filters out items matching a *predicate* from the collection. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md index abbaccf..e0ade2b 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md @@ -7,7 +7,7 @@ Filters out items matching a *predicate* from the collection. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md index ed67780..cb8c0f2 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md @@ -7,7 +7,7 @@ An IEnumable<T> extension method that left outer join. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md index 8be52b5..3300140 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md @@ -7,7 +7,7 @@ An IQueryable<T> extension method that left outer join. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md index 0fab33a..30cc76f 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md @@ -7,7 +7,7 @@ An IQueryable<T> extension method that left outer join. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1.md index d4dad69..96e47a4 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1.md @@ -7,7 +7,7 @@ The number of pages of *pageSize* size in the given collection. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md index 7cc6bec..4bd8187 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md @@ -7,7 +7,7 @@ The number of pages of *pageSize* size in the given collection. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1.md index 74df094..f49f852 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1.md @@ -7,7 +7,7 @@ Get a page of items from a collection, skipping *pageNumber* pages of *pageSize* ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1_1.md b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1_1.md index 7f35261..3f0b759 100644 --- a/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1_1.md +++ b/Documentation/Help/M_CapyKit_Extensions_LINQExtensions_Page__1_1.md @@ -7,7 +7,7 @@ Get a page of items from a collection, skipping *pageNumber* pages of *pageSize* ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md b/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md index 00b6d31..388cf4f 100644 --- a/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md +++ b/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md @@ -7,7 +7,7 @@ Replaces a null or empty string with a specified replacement string. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md b/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md index b9224b0..72117ec 100644 --- a/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md +++ b/Documentation/Help/M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md @@ -7,7 +7,7 @@ Replaces a null or whitespace string with a specified replacement string. ## Definition **Namespace:** CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHash.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHash.md deleted file mode 100644 index 8b2a0dc..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHash.md +++ /dev/null @@ -1,41 +0,0 @@ -# CalculateHash Method - - -Calculates the hash of a given string using an MD5 value as the first 32 bits. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static int CalculateHash( - string str -) -``` -**F#** -``` F# -static member CalculateHash : - str : string -> int -``` - - - -#### Parameters -
  String
The string to be hashed.
- -#### Return Value -Int32 -The calculated hash. - -## Remarks -This method is used for a quick and consistent hash function. It should not be considered cryptographically sound or used in security contexts. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHexHash.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHexHash.md deleted file mode 100644 index 07ce2a8..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_CalculateHexHash.md +++ /dev/null @@ -1,38 +0,0 @@ -# CalculateHexHash Method - - -Calculates the hexadecimal hash. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static string CalculateHexHash( - string str -) -``` -**F#** -``` F# -static member CalculateHexHash : - str : string -> string -``` - - - -#### Parameters -
  String
The string to be hashed.
- -#### Return Value -String -The calculated 16 character hexadecimal hash. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_DegreesToRadians.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_DegreesToRadians.md deleted file mode 100644 index 3cd35c2..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_DegreesToRadians.md +++ /dev/null @@ -1,38 +0,0 @@ -# DegreesToRadians Method - - -Convers degrees to radians. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static double DegreesToRadians( - double degrees -) -``` -**F#** -``` F# -static member DegreesToRadians : - degrees : float -> float -``` - - - -#### Parameters -
  Double
The degree value.
- -#### Return Value -Double -The value as radians. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance.md deleted file mode 100644 index 50937a3..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance.md +++ /dev/null @@ -1,57 +0,0 @@ -# GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem) Method - - -Gets the distance between two points on earth using the `haversine` formula. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static decimal GetDistance( - decimal latitudeOrigin, - decimal longitudeOrigin, - decimal latitudeDestination, - decimal longitudeDestination, - MeasurementSystem measurementSystem = MeasurementSystem.Imperial -) -``` -**F#** -``` F# -static member GetDistance : - latitudeOrigin : decimal * - longitudeOrigin : decimal * - latitudeDestination : decimal * - longitudeDestination : decimal * - ?measurementSystem : MeasurementSystem -(* Defaults: - let _measurementSystem = defaultArg measurementSystem MeasurementSystem.Imperial -*) --> decimal -``` - - - -#### Parameters -
  Decimal
The latitude origin.
  Decimal
The longitude origin.
  Decimal
The latitude destination.
  Decimal
The longitude destination.
  MeasurementSystem  (Optional)
(Optional) The measurement system.
- -#### Return Value -Decimal -The distance. - -## Remarks -Uses the - -haversine formula to calculate the "as-the-crow-flies" distance between two points on earth. - -## See Also - - -#### Reference -CalculationHelper Class -GetDistance Overload -CapyKit.Helpers Namespace -GetDistance(Double, Double, Double, Double, MeasurementSystem) diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance_1.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance_1.md deleted file mode 100644 index bff9246..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_GetDistance_1.md +++ /dev/null @@ -1,56 +0,0 @@ -# GetDistance(Double, Double, Double, Double, MeasurementSystem) Method - - -Gets the distance between two points on earth using the `haversine` formula. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static double GetDistance( - double latitudeOrigin, - double longitudeOrigin, - double latitudeDestination, - double longitudeDestination, - MeasurementSystem measurementSystem = MeasurementSystem.Imperial -) -``` -**F#** -``` F# -static member GetDistance : - latitudeOrigin : float * - longitudeOrigin : float * - latitudeDestination : float * - longitudeDestination : float * - ?measurementSystem : MeasurementSystem -(* Defaults: - let _measurementSystem = defaultArg measurementSystem MeasurementSystem.Imperial -*) --> float -``` - - - -#### Parameters -
  Double
The latitude of the origin.
  Double
The longitude of the origin.
  Double
The latitude destination.
  Double
The longitude destination.
  MeasurementSystem  (Optional)
(Optional) The measurement system.
- -#### Return Value -Double -The distance. - -## Remarks -Uses the - -haversine formula to calculate the "as-the-crow-flies" distance between two points on earth. - -## See Also - - -#### Reference -CalculationHelper Class -GetDistance Overload -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_KilometersToMiles.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_KilometersToMiles.md deleted file mode 100644 index da17e87..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_KilometersToMiles.md +++ /dev/null @@ -1,38 +0,0 @@ -# KilometersToMiles Method - - -Converts kilometers to miles. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static double KilometersToMiles( - double kilometers -) -``` -**F#** -``` F# -static member KilometersToMiles : - kilometers : float -> float -``` - - - -#### Parameters -
  Double
The value in kilometers.
- -#### Return Value -Double -The value in miles. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_MilesToKilometers.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_MilesToKilometers.md deleted file mode 100644 index fc87480..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_MilesToKilometers.md +++ /dev/null @@ -1,38 +0,0 @@ -# MilesToKilometers Method - - -Converts miles to kilometers. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static double MilesToKilometers( - double miles -) -``` -**F#** -``` F# -static member MilesToKilometers : - miles : float -> float -``` - - - -#### Parameters -
  Double
The value in miles.
- -#### Return Value -Double -The value in kilometers. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_RadiansToDegrees.md b/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_RadiansToDegrees.md deleted file mode 100644 index f7ce870..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_CalculationHelper_RadiansToDegrees.md +++ /dev/null @@ -1,38 +0,0 @@ -# RadiansToDegrees Method - - -Converts radians to degrees. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static double RadiansToDegrees( - double radians -) -``` -**F#** -``` F# -static member RadiansToDegrees : - radians : float -> float -``` - - - -#### Parameters -
  Double
The radian value.
- -#### Return Value -Double -The value as degrees. - -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Compress.md b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Compress.md index a4e5adf..9ed2b80 100644 --- a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Compress.md +++ b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Compress.md @@ -7,7 +7,7 @@ Compresses a given object using the `gzip` algorithm. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_CompressToString.md b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_CompressToString.md index 88a27fe..a08efd3 100644 --- a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_CompressToString.md +++ b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_CompressToString.md @@ -7,7 +7,7 @@ Compresses a given object to a string using `base64` encoding of `gzip` format. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_DecompressToString.md b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_DecompressToString.md index 69d1481..3ccf3ee 100644 --- a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_DecompressToString.md +++ b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_DecompressToString.md @@ -7,7 +7,7 @@ Decompresses the given `base64` string in `gzip` format. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1.md b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1.md index 8be696a..6c8d0cf 100644 --- a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1.md +++ b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1.md @@ -7,7 +7,7 @@ Decompresses a given compressed `gzip` byte stream. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md index 70f07f8..4a1a393 100644 --- a/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md +++ b/Documentation/Help/M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md @@ -7,7 +7,7 @@ Decompresses a given `base64` encoded string of `gzip` format. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md b/Documentation/Help/M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md index 1f96a5e..b7c9a1f 100644 --- a/Documentation/Help/M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md +++ b/Documentation/Help/M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md @@ -7,7 +7,7 @@ Converts camel case text to human readable text. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# @@ -30,9 +30,6 @@ static member CamelCaseToHumanReadable : String A string in human readable format. -## Remarks -Camel case is a naming convention for identifiers in which the first letter of each word is capitalized. - ## See Also diff --git a/Documentation/Help/M_CapyKit_Helpers_LanguageHelper__ctor.md b/Documentation/Help/M_CapyKit_Helpers_LanguageHelper__ctor.md index f2e125c..9d9e650 100644 --- a/Documentation/Help/M_CapyKit_Helpers_LanguageHelper__ctor.md +++ b/Documentation/Help/M_CapyKit_Helpers_LanguageHelper__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md index 090fb84..bf39d98 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md @@ -7,7 +7,7 @@ Compares an unencrypted *providedPassword* with a stored, encrypted *existingPas ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md index 1f3d688..54504d8 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md @@ -7,7 +7,7 @@ Compares two session identifiers. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareStrings.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareStrings.md index 9b26c4a..02f0f60 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareStrings.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_CompareStrings.md @@ -7,7 +7,7 @@ Compare two strings as case sensative. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md index 6732430..e0a7cce 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md @@ -7,7 +7,7 @@ Generates a new byte array of the specified length with random values. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md index 1cacbdc..5bd8c4f 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md @@ -7,7 +7,7 @@ Gets a cryptographically strong random password. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString.md index 490598d..d23ea2c 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString.md @@ -7,7 +7,7 @@ A convenience method to generate a random string of the specified length using a ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md index c815580..1f4dc07 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md @@ -7,7 +7,7 @@ Gets a cryptographically strong random string using the character values found i ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md index 290a088..ba2f720 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_HashPassword.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_HashPassword.md index a92afe2..877eaf8 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_HashPassword.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_HashPassword.md @@ -7,7 +7,7 @@ Hashes an unencrypted password. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md index 68ef968..1975bd9 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md @@ -7,7 +7,7 @@ Generates a new Password object using the PB ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md index d6e1a6d..90316c1 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md @@ -7,7 +7,7 @@ Generates a new Password object using the PB ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper__ctor.md b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper__ctor.md index 50dd73e..66eaab4 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SecurityHelper__ctor.md +++ b/Documentation/Help/M_CapyKit_Helpers_SecurityHelper__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md index 4166924..c468854 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md +++ b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md @@ -7,7 +7,7 @@ Deserializes an object to a given *T* type. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md index 39db726..acaccb7 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md +++ b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md @@ -7,7 +7,7 @@ Deserializes an object to a given *T* type. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md index c5dbe5b..f731d7f 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md +++ b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md @@ -7,7 +7,7 @@ Deserializes a `JSON` encoded string to the given *T*. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md index e948224..b7636b4 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md +++ b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md @@ -7,7 +7,7 @@ Serializes an object to a byte array. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToString.md b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToString.md index 6e122c4..b31576d 100644 --- a/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToString.md +++ b/Documentation/Help/M_CapyKit_Helpers_SerializationHelper_SerializeToString.md @@ -7,7 +7,7 @@ Serializes an object to a `JSON` encoded string. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_GetApplicationSetting__1.md b/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_GetApplicationSetting__1.md deleted file mode 100644 index cd1acdf..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_GetApplicationSetting__1.md +++ /dev/null @@ -1,42 +0,0 @@ -# GetApplicationSetting<T> Method - - -Retrieves a setting with the given `key`. Returns the setting as an uncast *T*. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static T GetApplicationSetting( - string settingName -) - -``` -**F#** -``` F# -static member GetApplicationSetting : - settingName : string -> 'T -``` - - - -#### Parameters -
  String
The name of the setting to retrieve.
- -#### Type Parameters -
The type of the setting to be retrieved.
- -#### Return Value -T -The value of the setting as an uncast *T*. - -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetAccessorMethod.md b/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetAccessorMethod.md deleted file mode 100644 index a8a075a..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetAccessorMethod.md +++ /dev/null @@ -1,41 +0,0 @@ -# SetAccessorMethod Method - - -Sets the function used to retrieve application settings. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static void SetAccessorMethod( - Func accessor -) -``` -**F#** -``` F# -static member SetAccessorMethod : - accessor : Func -> unit -``` - - - -#### Parameters -
  Func(String, Object)
The new function used to retrieve application settings.
- -## Exceptions - - - - -
ArgumentNullExceptionThrown when one or more required arguments are null.
- -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetDetectorMethod.md b/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetDetectorMethod.md deleted file mode 100644 index b20ea0a..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper_SetDetectorMethod.md +++ /dev/null @@ -1,41 +0,0 @@ -# SetDetectorMethod Method - - -Sets the function used to detect if an application setting with a given `key` exists. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static void SetDetectorMethod( - Func detector -) -``` -**F#** -``` F# -static member SetDetectorMethod : - detector : Func -> unit -``` - - - -#### Parameters -
  Func(String, Boolean)
The new function used to detect if an application setting exists.
- -## Exceptions - - - - -
ArgumentNullExceptionThrown when one or more required arguments are null.
- -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper__cctor.md b/Documentation/Help/M_CapyKit_Helpers_SettingsHelper__cctor.md deleted file mode 100644 index be3366c..0000000 --- a/Documentation/Help/M_CapyKit_Helpers_SettingsHelper__cctor.md +++ /dev/null @@ -1,28 +0,0 @@ -# SettingsHelper Constructor - - -Initializes the static fields of the SettingsHelper class - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -static SettingsHelper() -``` -**F#** -``` F# -new : unit -> SettingsHelper -``` - - - -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Compare.md b/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Compare.md index e41d3a4..96b694b 100644 --- a/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Compare.md +++ b/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Compare.md @@ -7,7 +7,7 @@ Compares the given plaintext password with an encrypted value using PBKDF2 algor ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Encrypt.md b/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Encrypt.md index f131f35..b4a4569 100644 --- a/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Encrypt.md +++ b/Documentation/Help/M_CapyKit_IPasswordAlgorithm_Encrypt.md @@ -7,7 +7,7 @@ Encrypts the given password using a defined algorithm. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Password_ToString.md b/Documentation/Help/M_CapyKit_Password_ToString.md index f5f96ae..78c0bee 100644 --- a/Documentation/Help/M_CapyKit_Password_ToString.md +++ b/Documentation/Help/M_CapyKit_Password_ToString.md @@ -7,7 +7,7 @@ Returns a string that represents the current object. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Password__cctor.md b/Documentation/Help/M_CapyKit_Password__cctor.md index 9a69166..4d8cb79 100644 --- a/Documentation/Help/M_CapyKit_Password__cctor.md +++ b/Documentation/Help/M_CapyKit_Password__cctor.md @@ -7,7 +7,7 @@ Initializes the static fields of the PasswordCapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Password__ctor.md b/Documentation/Help/M_CapyKit_Password__ctor.md index 051937c..09dbaab 100644 --- a/Documentation/Help/M_CapyKit_Password__ctor.md +++ b/Documentation/Help/M_CapyKit_Password__ctor.md @@ -7,7 +7,7 @@ Constructor. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pbkdf2Algorithm_Encrypt.md b/Documentation/Help/M_CapyKit_Pbkdf2Algorithm_Encrypt.md index 51f2469..b3d0fed 100644 --- a/Documentation/Help/M_CapyKit_Pbkdf2Algorithm_Encrypt.md +++ b/Documentation/Help/M_CapyKit_Pbkdf2Algorithm_Encrypt.md @@ -7,7 +7,7 @@ Encrypts the given password using a PBKDF2 algorithm. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pbkdf2Algorithm__ctor.md b/Documentation/Help/M_CapyKit_Pbkdf2Algorithm__ctor.md index 2e28fef..f3831de 100644 --- a/Documentation/Help/M_CapyKit_Pbkdf2Algorithm__ctor.md +++ b/Documentation/Help/M_CapyKit_Pbkdf2Algorithm__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the Pbkdf2A ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PoolItem_1_ReleaseLock.md b/Documentation/Help/M_CapyKit_PoolItem_1_ReleaseLock.md index bdb9d54..931e8d8 100644 --- a/Documentation/Help/M_CapyKit_PoolItem_1_ReleaseLock.md +++ b/Documentation/Help/M_CapyKit_PoolItem_1_ReleaseLock.md @@ -7,7 +7,7 @@ Releases the lock on the item. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PoolItem_1_SetLock.md b/Documentation/Help/M_CapyKit_PoolItem_1_SetLock.md index b93cb85..7541064 100644 --- a/Documentation/Help/M_CapyKit_PoolItem_1_SetLock.md +++ b/Documentation/Help/M_CapyKit_PoolItem_1_SetLock.md @@ -7,7 +7,7 @@ Sets the lock on the item indicating that it is in use. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PoolItem_1_ToString.md b/Documentation/Help/M_CapyKit_PoolItem_1_ToString.md index 6737239..2fb94e0 100644 --- a/Documentation/Help/M_CapyKit_PoolItem_1_ToString.md +++ b/Documentation/Help/M_CapyKit_PoolItem_1_ToString.md @@ -7,7 +7,7 @@ Returns a string that represents the current object and its lock state. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PoolItem_1__ctor.md b/Documentation/Help/M_CapyKit_PoolItem_1__ctor.md index 841e7f3..6e5080d 100644 --- a/Documentation/Help/M_CapyKit_PoolItem_1__ctor.md +++ b/Documentation/Help/M_CapyKit_PoolItem_1__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the PoolItem(T)< ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection.md b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection.md index cf2d166..ba06670 100644 --- a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection.md +++ b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection.md @@ -7,7 +7,7 @@ Fill the pool item collection from an existing *T* collection. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_1.md b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_1.md index 1ef506f..2acb8e4 100644 --- a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_1.md +++ b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_1.md @@ -7,7 +7,7 @@ Initializes the pool with the specified number of items using the default constr ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_2.md b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_2.md index 21a7d62..96befb7 100644 --- a/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_2.md +++ b/Documentation/Help/M_CapyKit_Pool_1_FillPoolItemCollection_2.md @@ -7,7 +7,7 @@ Initializes the pool with the specified number of items using the specified cons ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1_GetAvailableItem.md b/Documentation/Help/M_CapyKit_Pool_1_GetAvailableItem.md index 2fc7a2e..971b794 100644 --- a/Documentation/Help/M_CapyKit_Pool_1_GetAvailableItem.md +++ b/Documentation/Help/M_CapyKit_Pool_1_GetAvailableItem.md @@ -7,7 +7,7 @@ Gets the first available item from the pool and sets its lock. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1_ReleaseItem.md b/Documentation/Help/M_CapyKit_Pool_1_ReleaseItem.md index cea70f3..74460d4 100644 --- a/Documentation/Help/M_CapyKit_Pool_1_ReleaseItem.md +++ b/Documentation/Help/M_CapyKit_Pool_1_ReleaseItem.md @@ -7,7 +7,7 @@ Releases the lock on the specified item and returns it to the pool. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1__ctor.md b/Documentation/Help/M_CapyKit_Pool_1__ctor.md index 24d6908..187d8bc 100644 --- a/Documentation/Help/M_CapyKit_Pool_1__ctor.md +++ b/Documentation/Help/M_CapyKit_Pool_1__ctor.md @@ -7,7 +7,7 @@ Initializes a new instance of the Pool(T) clas ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1__ctor_1.md b/Documentation/Help/M_CapyKit_Pool_1__ctor_1.md index 133e3d0..6cd64ed 100644 --- a/Documentation/Help/M_CapyKit_Pool_1__ctor_1.md +++ b/Documentation/Help/M_CapyKit_Pool_1__ctor_1.md @@ -7,7 +7,7 @@ Initializes a new instance of the Pool(T) clas ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_Pool_1__ctor_2.md b/Documentation/Help/M_CapyKit_Pool_1__ctor_2.md index 2c1956d..6f3ea87 100644 --- a/Documentation/Help/M_CapyKit_Pool_1__ctor_2.md +++ b/Documentation/Help/M_CapyKit_Pool_1__ctor_2.md @@ -7,7 +7,7 @@ Initializes a new instance of the Pool(T) clas ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PropertyComparer_2_Equals.md b/Documentation/Help/M_CapyKit_PropertyComparer_2_Equals.md index 0fbf47f..2e51537 100644 --- a/Documentation/Help/M_CapyKit_PropertyComparer_2_Equals.md +++ b/Documentation/Help/M_CapyKit_PropertyComparer_2_Equals.md @@ -7,7 +7,7 @@ Determines whether the specified properties are equal. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PropertyComparer_2_GetHashCode.md b/Documentation/Help/M_CapyKit_PropertyComparer_2_GetHashCode.md index bd016c3..d12c16d 100644 --- a/Documentation/Help/M_CapyKit_PropertyComparer_2_GetHashCode.md +++ b/Documentation/Help/M_CapyKit_PropertyComparer_2_GetHashCode.md @@ -7,7 +7,7 @@ Returns a hash code for the specified object. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/M_CapyKit_PropertyComparer_2__ctor.md b/Documentation/Help/M_CapyKit_PropertyComparer_2__ctor.md index c638f6f..60e19b7 100644 --- a/Documentation/Help/M_CapyKit_PropertyComparer_2__ctor.md +++ b/Documentation/Help/M_CapyKit_PropertyComparer_2__ctor.md @@ -7,7 +7,7 @@ Constructor. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/Methods_T_CapyKit_Helpers_CalculationHelper.md b/Documentation/Help/Methods_T_CapyKit_Helpers_CalculationHelper.md deleted file mode 100644 index a60e872..0000000 --- a/Documentation/Help/Methods_T_CapyKit_Helpers_CalculationHelper.md +++ /dev/null @@ -1,39 +0,0 @@ -# CalculationHelper Methods - - - - -## Methods - - - - - - - - - - - - - - - - - - - - - - - - - -
CalculateHashCalculates the hash of a given string using an MD5 value as the first 32 bits.
CalculateHexHashCalculates the hexadecimal hash.
DegreesToRadiansConvers degrees to radians.
GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
GetDistance(Double, Double, Double, Double, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
KilometersToMilesConverts kilometers to miles.
MilesToKilometersConverts miles to kilometers.
RadiansToDegreesConverts radians to degrees.
- -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/Methods_T_CapyKit_Helpers_SettingsHelper.md b/Documentation/Help/Methods_T_CapyKit_Helpers_SettingsHelper.md deleted file mode 100644 index 96a80b3..0000000 --- a/Documentation/Help/Methods_T_CapyKit_Helpers_SettingsHelper.md +++ /dev/null @@ -1,24 +0,0 @@ -# SettingsHelper Methods - - - - -## Methods - - - - - - - - - - -
GetApplicationSetting(T)Retrieves a setting with the given key. Returns the setting as an uncast T.
SetAccessorMethodSets the function used to retrieve application settings.
SetDetectorMethodSets the function used to detect if an application setting with a given key exists.
- -## See Also - - -#### Reference -SettingsHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/N_CapyKit_Enumerations.md b/Documentation/Help/N_CapyKit_Enumerations.md deleted file mode 100644 index 7085ef2..0000000 --- a/Documentation/Help/N_CapyKit_Enumerations.md +++ /dev/null @@ -1,13 +0,0 @@ -# CapyKit.Enumerations Namespace - - -\[Missing <summary> documentation for "N:CapyKit.Enumerations"\] - - - -## Enumerations - - - - -
MeasurementSystemAn enumeration representing different measurement systems.
\ No newline at end of file diff --git a/Documentation/Help/N_CapyKit_Helpers.md b/Documentation/Help/N_CapyKit_Helpers.md index 4048a74..cb5018c 100644 --- a/Documentation/Help/N_CapyKit_Helpers.md +++ b/Documentation/Help/N_CapyKit_Helpers.md @@ -8,23 +8,17 @@ ## Classes - - - - + - - -
CalculationHelperStatic class providing helper methods for various calculations.
CompressionHelper A class that contains methods for managing data compression.
LanguageHelperHelper class for handling text transformations.
 
SecurityHelper A class that contains methods for managing secure data processing and cryptography.
SerializationHelper  
SettingsHelperStatic class containing helper methods for retrieving and setting application settings.
## Enumerations diff --git a/Documentation/Help/Overload_CapyKit_Helpers_CalculationHelper_GetDistance.md b/Documentation/Help/Overload_CapyKit_Helpers_CalculationHelper_GetDistance.md deleted file mode 100644 index 3bb0a1a..0000000 --- a/Documentation/Help/Overload_CapyKit_Helpers_CalculationHelper_GetDistance.md +++ /dev/null @@ -1,19 +0,0 @@ -# GetDistance Method - - -## Overload List - - - - - - - -
GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
GetDistance(Double, Double, Double, Double, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
- -## See Also - - -#### Reference -CalculationHelper Class -CapyKit.Helpers Namespace diff --git a/Documentation/Help/P_CapyKit_Attributes_EnumerationAttribute_1_Value.md b/Documentation/Help/P_CapyKit_Attributes_EnumerationAttribute_1_Value.md index a8fb0ae..208681e 100644 --- a/Documentation/Help/P_CapyKit_Attributes_EnumerationAttribute_1_Value.md +++ b/Documentation/Help/P_CapyKit_Attributes_EnumerationAttribute_1_Value.md @@ -7,7 +7,7 @@ Initializes a new instance of the CapyKit.Attributes -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_CapyEventArgs_Level.md b/Documentation/Help/P_CapyKit_CapyEventArgs_Level.md index 339aac4..2066512 100644 --- a/Documentation/Help/P_CapyKit_CapyEventArgs_Level.md +++ b/Documentation/Help/P_CapyKit_CapyEventArgs_Level.md @@ -7,7 +7,7 @@ Gets the severity level of the event. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_CapyEventArgs_Message.md b/Documentation/Help/P_CapyKit_CapyEventArgs_Message.md index 76d8334..8b500da 100644 --- a/Documentation/Help/P_CapyKit_CapyEventArgs_Message.md +++ b/Documentation/Help/P_CapyKit_CapyEventArgs_Message.md @@ -7,7 +7,7 @@ Gets the message describing the reason for the event. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_CapyEventArgs_MethodName.md b/Documentation/Help/P_CapyKit_CapyEventArgs_MethodName.md index 3efa094..5fbdfd1 100644 --- a/Documentation/Help/P_CapyKit_CapyEventArgs_MethodName.md +++ b/Documentation/Help/P_CapyKit_CapyEventArgs_MethodName.md @@ -7,7 +7,7 @@ Gets the name of the method where the event was raised. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_IPasswordAlgorithm_AlgorithmName.md b/Documentation/Help/P_CapyKit_IPasswordAlgorithm_AlgorithmName.md index b1a295f..38472d1 100644 --- a/Documentation/Help/P_CapyKit_IPasswordAlgorithm_AlgorithmName.md +++ b/Documentation/Help/P_CapyKit_IPasswordAlgorithm_AlgorithmName.md @@ -7,7 +7,7 @@ Gets the name of the algorithm. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_Password_Algorithm.md b/Documentation/Help/P_CapyKit_Password_Algorithm.md index a6b361a..b28c2db 100644 --- a/Documentation/Help/P_CapyKit_Password_Algorithm.md +++ b/Documentation/Help/P_CapyKit_Password_Algorithm.md @@ -7,7 +7,7 @@ Gets or sets the algorithm used for password encryption. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_Password_Hash.md b/Documentation/Help/P_CapyKit_Password_Hash.md index 22b2eac..7d82a6a 100644 --- a/Documentation/Help/P_CapyKit_Password_Hash.md +++ b/Documentation/Help/P_CapyKit_Password_Hash.md @@ -7,7 +7,7 @@ Gets or sets the hash of the password. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_Password_Pbkdf2Algorithm.md b/Documentation/Help/P_CapyKit_Password_Pbkdf2Algorithm.md index 35893f5..470b7cc 100644 --- a/Documentation/Help/P_CapyKit_Password_Pbkdf2Algorithm.md +++ b/Documentation/Help/P_CapyKit_Password_Pbkdf2Algorithm.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_Password_Salt.md b/Documentation/Help/P_CapyKit_Password_Salt.md index 7bb4d48..d26a42e 100644 --- a/Documentation/Help/P_CapyKit_Password_Salt.md +++ b/Documentation/Help/P_CapyKit_Password_Salt.md @@ -7,7 +7,7 @@ Gets or sets the salt used for encryption. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md b/Documentation/Help/P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md index 8c39c37..e84ddc5 100644 --- a/Documentation/Help/P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md +++ b/Documentation/Help/P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md @@ -7,7 +7,7 @@ Gets the name of the algorithm. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_PoolItem_1_Index.md b/Documentation/Help/P_CapyKit_PoolItem_1_Index.md index 6e68944..10e78b7 100644 --- a/Documentation/Help/P_CapyKit_PoolItem_1_Index.md +++ b/Documentation/Help/P_CapyKit_PoolItem_1_Index.md @@ -7,7 +7,7 @@ Gets the zero-based index of the pooled item. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_PoolItem_1_Item.md b/Documentation/Help/P_CapyKit_PoolItem_1_Item.md index 4c1d0e7..596d1bb 100644 --- a/Documentation/Help/P_CapyKit_PoolItem_1_Item.md +++ b/Documentation/Help/P_CapyKit_PoolItem_1_Item.md @@ -7,7 +7,7 @@ Gets the pooled resource. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_PoolItem_1_Locked.md b/Documentation/Help/P_CapyKit_PoolItem_1_Locked.md index 9721ac7..c57e84c 100644 --- a/Documentation/Help/P_CapyKit_PoolItem_1_Locked.md +++ b/Documentation/Help/P_CapyKit_PoolItem_1_Locked.md @@ -7,7 +7,7 @@ Gets a value indicating whether this object is locked or not. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/P_CapyKit_PoolItem_1_TypeName.md b/Documentation/Help/P_CapyKit_PoolItem_1_TypeName.md index 660cdd9..89443c5 100644 --- a/Documentation/Help/P_CapyKit_PoolItem_1_TypeName.md +++ b/Documentation/Help/P_CapyKit_PoolItem_1_TypeName.md @@ -7,7 +7,7 @@ Gets the name of the CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/R_Project_Documentation.md b/Documentation/Help/R_Project_Documentation.md deleted file mode 100644 index 48d9d88..0000000 --- a/Documentation/Help/R_Project_Documentation.md +++ /dev/null @@ -1,23 +0,0 @@ -# Namespaces - - - - -## Namespaces - - - - - - - - - - - - - - - - -
CapyKit
CapyKit.Attributes
CapyKit.Enumerations
CapyKit.Extensions
CapyKit.Helpers
\ No newline at end of file diff --git a/Documentation/Help/T_CapyKit_Attributes_EnumerationAttribute_1.md b/Documentation/Help/T_CapyKit_Attributes_EnumerationAttribute_1.md index 793ef41..bbdc7bb 100644 --- a/Documentation/Help/T_CapyKit_Attributes_EnumerationAttribute_1.md +++ b/Documentation/Help/T_CapyKit_Attributes_EnumerationAttribute_1.md @@ -7,7 +7,7 @@ Custom attribute class for decorating enumeration fields with additional data. ## Definition **Namespace:** CapyKit.Attributes -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Attributes_EnumerationDescriptionAttribute.md b/Documentation/Help/T_CapyKit_Attributes_EnumerationDescriptionAttribute.md index 800d379..71428db 100644 --- a/Documentation/Help/T_CapyKit_Attributes_EnumerationDescriptionAttribute.md +++ b/Documentation/Help/T_CapyKit_Attributes_EnumerationDescriptionAttribute.md @@ -7,7 +7,7 @@ An attribute class for decorating enumeration fields with a description. ## Definition **Namespace:** CapyKit.Attributes -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_CapyEventArgs.md b/Documentation/Help/T_CapyKit_CapyEventArgs.md index 6d9d272..67db77c 100644 --- a/Documentation/Help/T_CapyKit_CapyEventArgs.md +++ b/Documentation/Help/T_CapyKit_CapyEventArgs.md @@ -7,7 +7,7 @@ The CapyEventArgs class represents an event argument instance with event level, ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_CapyEventHandler.md b/Documentation/Help/T_CapyKit_CapyEventHandler.md index 4c30bc5..45fc3b3 100644 --- a/Documentation/Help/T_CapyKit_CapyEventHandler.md +++ b/Documentation/Help/T_CapyKit_CapyEventHandler.md @@ -7,7 +7,7 @@ A delegate representing an event handler that accepts a CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_CapyEventReporter.md b/Documentation/Help/T_CapyKit_CapyEventReporter.md index 7ae5f49..da59ce9 100644 --- a/Documentation/Help/T_CapyKit_CapyEventReporter.md +++ b/Documentation/Help/T_CapyKit_CapyEventReporter.md @@ -7,7 +7,7 @@ The CapyEventReporter class is responsible for managing event subscriptions and ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Color.md b/Documentation/Help/T_CapyKit_Color.md index d4ff252..4a0330e 100644 --- a/Documentation/Help/T_CapyKit_Color.md +++ b/Documentation/Help/T_CapyKit_Color.md @@ -7,7 +7,7 @@ Enum representing a set of named colors with their corresponding HEX values. The ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Enumerations_MeasurementSystem.md b/Documentation/Help/T_CapyKit_Enumerations_MeasurementSystem.md deleted file mode 100644 index 4db7bb4..0000000 --- a/Documentation/Help/T_CapyKit_Enumerations_MeasurementSystem.md +++ /dev/null @@ -1,39 +0,0 @@ -# MeasurementSystem Enumeration - - -An enumeration representing different measurement systems. - - - -## Definition -**Namespace:** CapyKit.Enumerations -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public enum MeasurementSystem -``` -**F#** -``` F# -type MeasurementSystem -``` - - - -## Members - - - - - - - - - -
Imperial0The imperial measurement system.
Metric1The metric measurement system.
- -## See Also - - -#### Reference -CapyKit.Enumerations Namespace diff --git a/Documentation/Help/T_CapyKit_EventLevel.md b/Documentation/Help/T_CapyKit_EventLevel.md index 23eddda..1b92991 100644 --- a/Documentation/Help/T_CapyKit_EventLevel.md +++ b/Documentation/Help/T_CapyKit_EventLevel.md @@ -7,7 +7,7 @@ Enumeration representing different event level severity values. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Extensions_EnumerationExtensions.md b/Documentation/Help/T_CapyKit_Extensions_EnumerationExtensions.md index 0a2240d..5886c94 100644 --- a/Documentation/Help/T_CapyKit_Extensions_EnumerationExtensions.md +++ b/Documentation/Help/T_CapyKit_Extensions_EnumerationExtensions.md @@ -7,7 +7,7 @@ Provides static extentions methods for providing additional functionality for CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Extensions_LINQExtensions.md b/Documentation/Help/T_CapyKit_Extensions_LINQExtensions.md index cdee283..19ec264 100644 --- a/Documentation/Help/T_CapyKit_Extensions_LINQExtensions.md +++ b/Documentation/Help/T_CapyKit_Extensions_LINQExtensions.md @@ -7,7 +7,7 @@ Provides static extension methods for performing common LINQ operations on CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Extensions_StringExtensions.md b/Documentation/Help/T_CapyKit_Extensions_StringExtensions.md index 523c236..ab55c91 100644 --- a/Documentation/Help/T_CapyKit_Extensions_StringExtensions.md +++ b/Documentation/Help/T_CapyKit_Extensions_StringExtensions.md @@ -7,7 +7,7 @@ Provides static extentions methods for providing additional functionality for CapyKit.Extensions -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Helpers_CalculationHelper.md b/Documentation/Help/T_CapyKit_Helpers_CalculationHelper.md deleted file mode 100644 index 9412395..0000000 --- a/Documentation/Help/T_CapyKit_Helpers_CalculationHelper.md +++ /dev/null @@ -1,73 +0,0 @@ -# CalculationHelper Class - - -Static class providing helper methods for various calculations. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static class CalculationHelper -``` -**F#** -``` F# -[] -[] -type CalculationHelper = class end -``` - - -
InheritanceObject → CalculationHelper
- - - -## Methods - - - - - - - - - - - - - - - - - - - - - - - - - -
CalculateHashCalculates the hash of a given string using an MD5 value as the first 32 bits.
CalculateHexHashCalculates the hexadecimal hash.
DegreesToRadiansConvers degrees to radians.
GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
GetDistance(Double, Double, Double, Double, MeasurementSystem)Gets the distance between two points on earth using the haversine formula.
KilometersToMilesConverts kilometers to miles.
MilesToKilometersConverts miles to kilometers.
RadiansToDegreesConverts radians to degrees.
- -## Fields - - - - - - - - - - -
charsThe valid hexidecimal characters.
EARTH_RADIUS_KILOMETERSThe earth's radius in kilometers.
MILES_PER_KILOMETERRatio of miles per kilometer .
- -## See Also - - -#### Reference -CapyKit.Helpers Namespace diff --git a/Documentation/Help/T_CapyKit_Helpers_CompressionHelper.md b/Documentation/Help/T_CapyKit_Helpers_CompressionHelper.md index be310cf..cdabeae 100644 --- a/Documentation/Help/T_CapyKit_Helpers_CompressionHelper.md +++ b/Documentation/Help/T_CapyKit_Helpers_CompressionHelper.md @@ -7,7 +7,7 @@ A class that contains methods for managing data compression. ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Helpers_LanguageHelper.md b/Documentation/Help/T_CapyKit_Helpers_LanguageHelper.md index bb86139..383a509 100644 --- a/Documentation/Help/T_CapyKit_Helpers_LanguageHelper.md +++ b/Documentation/Help/T_CapyKit_Helpers_LanguageHelper.md @@ -1,13 +1,13 @@ # LanguageHelper Class -Helper class for handling text transformations. +\[Missing <summary> documentation for "T:CapyKit.Helpers.LanguageHelper"\] ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Helpers_SecurityHelper.md b/Documentation/Help/T_CapyKit_Helpers_SecurityHelper.md index e31d0de..70dba74 100644 --- a/Documentation/Help/T_CapyKit_Helpers_SecurityHelper.md +++ b/Documentation/Help/T_CapyKit_Helpers_SecurityHelper.md @@ -7,7 +7,7 @@ A class that contains methods for managing secure data processing and cryptograp ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Helpers_SerializationHelper.md b/Documentation/Help/T_CapyKit_Helpers_SerializationHelper.md index 2dc5330..cd32244 100644 --- a/Documentation/Help/T_CapyKit_Helpers_SerializationHelper.md +++ b/Documentation/Help/T_CapyKit_Helpers_SerializationHelper.md @@ -7,7 +7,7 @@ ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Helpers_SettingsHelper.md b/Documentation/Help/T_CapyKit_Helpers_SettingsHelper.md deleted file mode 100644 index 97677fb..0000000 --- a/Documentation/Help/T_CapyKit_Helpers_SettingsHelper.md +++ /dev/null @@ -1,99 +0,0 @@ -# SettingsHelper Class - - -Static class containing helper methods for retrieving and setting application settings. - - - -## Definition -**Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 - -**C#** -``` C# -public static class SettingsHelper -``` -**F#** -``` F# -[] -[] -type SettingsHelper = class end -``` - - -
InheritanceObject → SettingsHelper
- - - -## Remarks -The specific means of accessing and storing the settings are determined by the consumer, allowing for flexibility in various environments such as `App.config` or `Web.config` . - -## Example -This example demonstrates how to set up the SettingsHelper class with custom accessor and detector methods that read from an App.config file. The setup is done at the beginning of the application execution, before any other usage of the helper methods. - -**C#** -``` C# -public int main(string[] args) -{ - // Set up SettingsHelper with custom accessor and detector methods - Func accessor = (key) => - { - Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); - return config.AppSettings.Settings[key].Value; - }; - - Func detector = (key) => - { - Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); - return config.AppSettings.Settings.AllKeys.Contains(key); - }; - - SettingsHelper.SetAccessorMethod(accessor); - SettingsHelper.SetDetectorMethod(detector); - - // Use the helper to retrieve and set settings - SettingsHelper.SetApplicationSetting("MySettingKey", 42); - int newSetting = SettingsHelper.GetApplicationSetting("MySettingKey"); - Console.WriteLine("New setting: {0}", newSetting); - - int mySetting = SettingsHelper.GetApplicationSetting("MySettingKey"); - Console.WriteLine("Retrieved setting: {0}", mySetting); -} -``` - - -## Constructors - - - - -
SettingsHelper 
- -## Methods - - - - - - - - - - -
GetApplicationSetting(T)Retrieves a setting with the given key. Returns the setting as an uncast T.
SetAccessorMethodSets the function used to retrieve application settings.
SetDetectorMethodSets the function used to detect if an application setting with a given key exists.
- -## Fields - - - - - - - -
accessorPrivate delegate function that retrieves a setting with the given key. Returns the setting as an uncast Object.
detectorPrivate delegate function that detects if a setting with a given key exists. Returns true if the setting exists, false if not.
- -## See Also - - -#### Reference -CapyKit.Helpers Namespace diff --git a/Documentation/Help/T_CapyKit_Helpers_ValidCharacterCollection.md b/Documentation/Help/T_CapyKit_Helpers_ValidCharacterCollection.md index 91aa1bd..093814e 100644 --- a/Documentation/Help/T_CapyKit_Helpers_ValidCharacterCollection.md +++ b/Documentation/Help/T_CapyKit_Helpers_ValidCharacterCollection.md @@ -7,7 +7,7 @@ An enumeration that defines the types of characters that can be included in a ra ## Definition **Namespace:** CapyKit.Helpers -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_IPasswordAlgorithm.md b/Documentation/Help/T_CapyKit_IPasswordAlgorithm.md index ae817ef..7977060 100644 --- a/Documentation/Help/T_CapyKit_IPasswordAlgorithm.md +++ b/Documentation/Help/T_CapyKit_IPasswordAlgorithm.md @@ -7,7 +7,7 @@ Defines the contract for password encryption algorithms. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Password.md b/Documentation/Help/T_CapyKit_Password.md index 2b095d7..454abb5 100644 --- a/Documentation/Help/T_CapyKit_Password.md +++ b/Documentation/Help/T_CapyKit_Password.md @@ -7,7 +7,7 @@ Represents a password with its hash, salt and algorithm used for encryption. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Pbkdf2Algorithm.md b/Documentation/Help/T_CapyKit_Pbkdf2Algorithm.md index b85e841..1b70fce 100644 --- a/Documentation/Help/T_CapyKit_Pbkdf2Algorithm.md +++ b/Documentation/Help/T_CapyKit_Pbkdf2Algorithm.md @@ -7,7 +7,7 @@ Implements the PBKDF2 algorithm for password encryption. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_PoolItem_1.md b/Documentation/Help/T_CapyKit_PoolItem_1.md index 02d6c9a..eb733ac 100644 --- a/Documentation/Help/T_CapyKit_PoolItem_1.md +++ b/Documentation/Help/T_CapyKit_PoolItem_1.md @@ -7,7 +7,7 @@ A pool item. This class cannot be inherited. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_Pool_1.md b/Documentation/Help/T_CapyKit_Pool_1.md index f3e7df8..31a3b1a 100644 --- a/Documentation/Help/T_CapyKit_Pool_1.md +++ b/Documentation/Help/T_CapyKit_Pool_1.md @@ -7,7 +7,7 @@ A managed pool of resources. This class provides a thread-safe way to manage a c ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/T_CapyKit_PropertyComparer_2.md b/Documentation/Help/T_CapyKit_PropertyComparer_2.md index 0edce08..97e317c 100644 --- a/Documentation/Help/T_CapyKit_PropertyComparer_2.md +++ b/Documentation/Help/T_CapyKit_PropertyComparer_2.md @@ -7,7 +7,7 @@ A object comparer that can accept a lambda expression to compare properties. ## Definition **Namespace:** CapyKit -**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0 +**Assembly:** CapyKit (in CapyKit.dll) Version: 1.0.0+735d7c4c91a8ae04c2d8cae4ce85ddf4909e5b7d **C#** ``` C# diff --git a/Documentation/Help/_Sidebar.md b/Documentation/Help/_Sidebar.md index c696319..4f2f2eb 100644 --- a/Documentation/Help/_Sidebar.md +++ b/Documentation/Help/_Sidebar.md @@ -1,199 +1,174 @@ - [CapyKit - C# Utilities](849aa079-3d64-4cf1-966f-44af23c73160.md) -- [Namespaces](R_Project_Documentation.md) - - [CapyKit Namespace](N_CapyKit.md) - - [CapyEventArgs Class](T_CapyKit_CapyEventArgs.md) - - [CapyEventArgs Constructor](M_CapyKit_CapyEventArgs__ctor.md) - - [CapyEventArgs Properties](Properties_T_CapyKit_CapyEventArgs.md) - - [Level Property](P_CapyKit_CapyEventArgs_Level.md) - - [Message Property](P_CapyKit_CapyEventArgs_Message.md) - - [MethodName Property](P_CapyKit_CapyEventArgs_MethodName.md) - - [CapyEventArgs Methods](Methods_T_CapyKit_CapyEventArgs.md) - - [CapyEventHandler Delegate](T_CapyKit_CapyEventHandler.md) - - [CapyEventReporter Class](T_CapyKit_CapyEventReporter.md) - - [CapyEventReporter Constructor](M_CapyKit_CapyEventReporter__cctor.md) - - [CapyEventReporter Methods](Methods_T_CapyKit_CapyEventReporter.md) - - [EmitEvent Method](M_CapyKit_CapyEventReporter_EmitEvent.md) - - [EmitEventOnce Method](M_CapyKit_CapyEventReporter_EmitEventOnce.md) - - [Subscribe Method](M_CapyKit_CapyEventReporter_Subscribe.md) - - [Unsubscribe Method](M_CapyKit_CapyEventReporter_Unsubscribe.md) - - [CapyEventReporter Fields](Fields_T_CapyKit_CapyEventReporter.md) - - [uniqueIdentifiers Field](F_CapyKit_CapyEventReporter_uniqueIdentifiers.md) - - [Color Enumeration](T_CapyKit_Color.md) - - [EventLevel Enumeration](T_CapyKit_EventLevel.md) - - [IPasswordAlgorithm Interface](T_CapyKit_IPasswordAlgorithm.md) - - [IPasswordAlgorithm Properties](Properties_T_CapyKit_IPasswordAlgorithm.md) - - [AlgorithmName Property](P_CapyKit_IPasswordAlgorithm_AlgorithmName.md) - - [IPasswordAlgorithm Methods](Methods_T_CapyKit_IPasswordAlgorithm.md) - - [Compare Method](M_CapyKit_IPasswordAlgorithm_Compare.md) - - [Encrypt Method](M_CapyKit_IPasswordAlgorithm_Encrypt.md) - - [Password Class](T_CapyKit_Password.md) - - [Password Constructor](M_CapyKit_Password__cctor.md) - - [Password Constructor](M_CapyKit_Password__ctor.md) - - [Password Properties](Properties_T_CapyKit_Password.md) - - [Algorithm Property](P_CapyKit_Password_Algorithm.md) - - [Hash Property](P_CapyKit_Password_Hash.md) - - [Pbkdf2Algorithm Property](P_CapyKit_Password_Pbkdf2Algorithm.md) - - [Salt Property](P_CapyKit_Password_Salt.md) - - [Password Methods](Methods_T_CapyKit_Password.md) - - [ToString Method](M_CapyKit_Password_ToString.md) - - [Password Fields](Fields_T_CapyKit_Password.md) - - [algorithm Field](F_CapyKit_Password_algorithm.md) - - [Pbkdf2Algorithm Class](T_CapyKit_Pbkdf2Algorithm.md) - - [Pbkdf2Algorithm Constructor](M_CapyKit_Pbkdf2Algorithm__ctor.md) - - [Pbkdf2Algorithm Properties](Properties_T_CapyKit_Pbkdf2Algorithm.md) - - [AlgorithmName Property](P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md) - - [Pbkdf2Algorithm Methods](Methods_T_CapyKit_Pbkdf2Algorithm.md) - - [Encrypt Method](M_CapyKit_Pbkdf2Algorithm_Encrypt.md) - - [Pbkdf2Algorithm Fields](Fields_T_CapyKit_Pbkdf2Algorithm.md) - - [ITERATIONS Field](F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md) - - [LENGTH Field](F_CapyKit_Pbkdf2Algorithm_LENGTH.md) - - [Pool Class](T_CapyKit_Pool_1.md) - - [Pool Constructor](Overload_CapyKit_Pool_1__ctor.md) - - [Pool(IEnumerable) Constructor](M_CapyKit_Pool_1__ctor.md) - - [Pool(Int32) Constructor](M_CapyKit_Pool_1__ctor_1.md) - - [Pool(Int32, Func) Constructor](M_CapyKit_Pool_1__ctor_2.md) - - [Pool Methods](Methods_T_CapyKit_Pool_1.md) - - [FillPoolItemCollection Method](Overload_CapyKit_Pool_1_FillPoolItemCollection.md) - - [FillPoolItemCollection(IEnumerable) Method](M_CapyKit_Pool_1_FillPoolItemCollection.md) - - [FillPoolItemCollection(Int32) Method](M_CapyKit_Pool_1_FillPoolItemCollection_1.md) - - [FillPoolItemCollection(Int32, Func) Method](M_CapyKit_Pool_1_FillPoolItemCollection_2.md) - - [GetAvailableItem Method](M_CapyKit_Pool_1_GetAvailableItem.md) - - [ReleaseItem Method](M_CapyKit_Pool_1_ReleaseItem.md) - - [Pool Fields](Fields_T_CapyKit_Pool_1.md) - - [poolItemCollection Field](F_CapyKit_Pool_1_poolItemCollection.md) - - [poolSize Field](F_CapyKit_Pool_1_poolSize.md) - - [PoolItem Class](T_CapyKit_PoolItem_1.md) - - [PoolItem Constructor](M_CapyKit_PoolItem_1__ctor.md) - - [PoolItem Properties](Properties_T_CapyKit_PoolItem_1.md) - - [Index Property](P_CapyKit_PoolItem_1_Index.md) - - [Item Property](P_CapyKit_PoolItem_1_Item.md) - - [Locked Property](P_CapyKit_PoolItem_1_Locked.md) - - [TypeName Property](P_CapyKit_PoolItem_1_TypeName.md) - - [PoolItem Methods](Methods_T_CapyKit_PoolItem_1.md) - - [ReleaseLock Method](M_CapyKit_PoolItem_1_ReleaseLock.md) - - [SetLock Method](M_CapyKit_PoolItem_1_SetLock.md) - - [ToString Method](M_CapyKit_PoolItem_1_ToString.md) - - [PoolItem Fields](Fields_T_CapyKit_PoolItem_1.md) - - [index Field](F_CapyKit_PoolItem_1_index.md) - - [item Field](F_CapyKit_PoolItem_1_item.md) - - [locked Field](F_CapyKit_PoolItem_1_locked.md) - - [typeName Field](F_CapyKit_PoolItem_1_typeName.md) - - [PropertyComparer Class](T_CapyKit_PropertyComparer_2.md) - - [PropertyComparer Constructor](M_CapyKit_PropertyComparer_2__ctor.md) - - [PropertyComparer Methods](Methods_T_CapyKit_PropertyComparer_2.md) - - [Equals Method](Overload_CapyKit_PropertyComparer_2_Equals.md) - - [Equals(T, T) Method](M_CapyKit_PropertyComparer_2_Equals.md) - - [GetHashCode Method](Overload_CapyKit_PropertyComparer_2_GetHashCode.md) - - [GetHashCode(T) Method](M_CapyKit_PropertyComparer_2_GetHashCode.md) - - [PropertyComparer Fields](Fields_T_CapyKit_PropertyComparer_2.md) - - [expression Field](F_CapyKit_PropertyComparer_2_expression.md) - - [CapyKit.Attributes Namespace](N_CapyKit_Attributes.md) - - [EnumerationAttribute Class](T_CapyKit_Attributes_EnumerationAttribute_1.md) - - [EnumerationAttribute Constructor](M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md) - - [EnumerationAttribute Properties](Properties_T_CapyKit_Attributes_EnumerationAttribute_1.md) - - [Value Property](P_CapyKit_Attributes_EnumerationAttribute_1_Value.md) - - [EnumerationAttribute Methods](Methods_T_CapyKit_Attributes_EnumerationAttribute_1.md) - - [EnumerationDescriptionAttribute Class](T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) - - [EnumerationDescriptionAttribute Constructor](M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md) - - [EnumerationDescriptionAttribute Properties](Properties_T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) - - [EnumerationDescriptionAttribute Methods](Methods_T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) - - [CapyKit.Enumerations Namespace](N_CapyKit_Enumerations.md) - - [MeasurementSystem Enumeration](T_CapyKit_Enumerations_MeasurementSystem.md) - - [CapyKit.Extensions Namespace](N_CapyKit_Extensions.md) - - [EnumerationExtensions Class](T_CapyKit_Extensions_EnumerationExtensions.md) - - [EnumerationExtensions Methods](Methods_T_CapyKit_Extensions_EnumerationExtensions.md) - - [GetDescription Method](M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md) - - [GetName Method](M_CapyKit_Extensions_EnumerationExtensions_GetName.md) - - [GetPrettyName Method](M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md) - - [GetValue Method](M_CapyKit_Extensions_EnumerationExtensions_GetValue.md) - - [Parse Method](Overload_CapyKit_Extensions_EnumerationExtensions_Parse.md) - - [Parse(T, String) Method](M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md) - - [Parse(T, String, Boolean) Method](M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md) - - [LINQExtensions Class](T_CapyKit_Extensions_LINQExtensions.md) - - [LINQExtensions Methods](Methods_T_CapyKit_Extensions_LINQExtensions.md) - - [Distinct Method](M_CapyKit_Extensions_LINQExtensions_Distinct__2.md) - - [Filter Method](Overload_CapyKit_Extensions_LINQExtensions_Filter.md) - - [Filter(IEnumerable, Func) Method](M_CapyKit_Extensions_LINQExtensions_Filter__1.md) - - [Filter(IQueryable, Expression>) Method](M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md) - - [LeftOuterJoin Method](Overload_CapyKit_Extensions_LINQExtensions_LeftOuterJoin.md) - - [LeftOuterJoin(IQueryable, IQueryable, Expression>, Expression>, Expression, R>>) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md) - - [LeftOuterJoin(IEnumerable, IEnumerable, Func, Func, Func, R>, Func) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md) - - [LeftOuterJoin(IQueryable, IQueryable, Expression>, Expression>, Func, R>, Func) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md) - - [Page Method](Overload_CapyKit_Extensions_LINQExtensions_Page.md) - - [Page(IEnumerable, Int32, Int32) Method](M_CapyKit_Extensions_LINQExtensions_Page__1.md) - - [Page(IQueryable, Int32, Int32) Method](M_CapyKit_Extensions_LINQExtensions_Page__1_1.md) - - [PageCount Method](Overload_CapyKit_Extensions_LINQExtensions_PageCount.md) - - [PageCount(IEnumerable, Int32) Method](M_CapyKit_Extensions_LINQExtensions_PageCount__1.md) - - [PageCount(IQueryable, Int32) Method](M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md) - - [StringExtensions Class](T_CapyKit_Extensions_StringExtensions.md) - - [StringExtensions Methods](Methods_T_CapyKit_Extensions_StringExtensions.md) - - [IfNullOrEmpty Method](M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md) - - [IfNullOrWhiteSpace Method](M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md) - - [CapyKit.Helpers Namespace](N_CapyKit_Helpers.md) - - [CalculationHelper Class](T_CapyKit_Helpers_CalculationHelper.md) - - [CalculationHelper Methods](Methods_T_CapyKit_Helpers_CalculationHelper.md) - - [CalculateHash Method](M_CapyKit_Helpers_CalculationHelper_CalculateHash.md) - - [CalculateHexHash Method](M_CapyKit_Helpers_CalculationHelper_CalculateHexHash.md) - - [DegreesToRadians Method](M_CapyKit_Helpers_CalculationHelper_DegreesToRadians.md) - - [GetDistance Method](Overload_CapyKit_Helpers_CalculationHelper_GetDistance.md) - - [GetDistance(Decimal, Decimal, Decimal, Decimal, MeasurementSystem) Method](M_CapyKit_Helpers_CalculationHelper_GetDistance.md) - - [GetDistance(Double, Double, Double, Double, MeasurementSystem) Method](M_CapyKit_Helpers_CalculationHelper_GetDistance_1.md) - - [KilometersToMiles Method](M_CapyKit_Helpers_CalculationHelper_KilometersToMiles.md) - - [MilesToKilometers Method](M_CapyKit_Helpers_CalculationHelper_MilesToKilometers.md) - - [RadiansToDegrees Method](M_CapyKit_Helpers_CalculationHelper_RadiansToDegrees.md) - - [CalculationHelper Fields](Fields_T_CapyKit_Helpers_CalculationHelper.md) - - [chars Field](F_CapyKit_Helpers_CalculationHelper_chars.md) - - [EARTH_RADIUS_KILOMETERS Field](F_CapyKit_Helpers_CalculationHelper_EARTH_RADIUS_KILOMETERS.md) - - [MILES_PER_KILOMETER Field](F_CapyKit_Helpers_CalculationHelper_MILES_PER_KILOMETER.md) - - [CompressionHelper Class](T_CapyKit_Helpers_CompressionHelper.md) - - [CompressionHelper Methods](Methods_T_CapyKit_Helpers_CompressionHelper.md) - - [Compress Method](M_CapyKit_Helpers_CompressionHelper_Compress.md) - - [CompressToString Method](M_CapyKit_Helpers_CompressionHelper_CompressToString.md) - - [Decompress Method](Overload_CapyKit_Helpers_CompressionHelper_Decompress.md) - - [Decompress(Byte[]) Method](M_CapyKit_Helpers_CompressionHelper_Decompress__1.md) - - [Decompress(String) Method](M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md) - - [DecompressToString Method](M_CapyKit_Helpers_CompressionHelper_DecompressToString.md) - - [LanguageHelper Class](T_CapyKit_Helpers_LanguageHelper.md) - - [LanguageHelper Constructor](M_CapyKit_Helpers_LanguageHelper__ctor.md) - - [LanguageHelper Methods](Methods_T_CapyKit_Helpers_LanguageHelper.md) - - [CamelCaseToHumanReadable Method](M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md) - - [SecurityHelper Class](T_CapyKit_Helpers_SecurityHelper.md) - - [SecurityHelper Constructor](M_CapyKit_Helpers_SecurityHelper__ctor.md) - - [SecurityHelper Methods](Methods_T_CapyKit_Helpers_SecurityHelper.md) - - [CompareHashedPassword Method](M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md) - - [CompareSessionID Method](M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md) - - [CompareStrings Method](M_CapyKit_Helpers_SecurityHelper_CompareStrings.md) - - [GetRandomBytes Method](M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md) - - [GetRandomPassword Method](M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md) - - [GetRandomString Method](Overload_CapyKit_Helpers_SecurityHelper_GetRandomString.md) - - [GetRandomString(Int32) Method](M_CapyKit_Helpers_SecurityHelper_GetRandomString.md) - - [GetRandomString(Int32, ValidCharacterCollection[]) Method](M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md) - - [GetValidCharacterComposition Method](M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md) - - [HashPassword Method](M_CapyKit_Helpers_SecurityHelper_HashPassword.md) - - [Pbkdf2 Method](Overload_CapyKit_Helpers_SecurityHelper_Pbkdf2.md) - - [Pbkdf2(String) Method](M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md) - - [Pbkdf2(String, Byte[]) Method](M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md) - - [SecurityHelper Fields](Fields_T_CapyKit_Helpers_SecurityHelper.md) - - [LOWER_CASE_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md) - - [NUMBER_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md) - - [saltSize Field](F_CapyKit_Helpers_SecurityHelper_saltSize.md) - - [SPECIAL_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md) - - [UPPER_CASE_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md) - - [SerializationHelper Class](T_CapyKit_Helpers_SerializationHelper.md) - - [SerializationHelper Methods](Methods_T_CapyKit_Helpers_SerializationHelper.md) - - [Deserialize Method](Overload_CapyKit_Helpers_SerializationHelper_Deserialize.md) - - [Deserialize(Byte[]) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md) - - [Deserialize(Stream) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md) - - [Deserialize(String) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md) - - [SerializeToBytes Method](M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md) - - [SerializeToString Method](M_CapyKit_Helpers_SerializationHelper_SerializeToString.md) - - [SettingsHelper Class](T_CapyKit_Helpers_SettingsHelper.md) - - [SettingsHelper Constructor](M_CapyKit_Helpers_SettingsHelper__cctor.md) - - [SettingsHelper Methods](Methods_T_CapyKit_Helpers_SettingsHelper.md) - - [GetApplicationSetting Method](M_CapyKit_Helpers_SettingsHelper_GetApplicationSetting__1.md) - - [SetAccessorMethod Method](M_CapyKit_Helpers_SettingsHelper_SetAccessorMethod.md) - - [SetDetectorMethod Method](M_CapyKit_Helpers_SettingsHelper_SetDetectorMethod.md) - - [SettingsHelper Fields](Fields_T_CapyKit_Helpers_SettingsHelper.md) - - [accessor Field](F_CapyKit_Helpers_SettingsHelper_accessor.md) - - [detector Field](F_CapyKit_Helpers_SettingsHelper_detector.md) - - [ValidCharacterCollection Enumeration](T_CapyKit_Helpers_ValidCharacterCollection.md) +- [Version History](7d36447b-0aab-4ce9-b5ed-e60ec5bee103.md) + - [Version 1.0.0.0](fa7407d1-9116-4ad7-a9ab-ed094685b070.md) +- [CapyKit Namespace](N_CapyKit.md) + - [CapyEventArgs Class](T_CapyKit_CapyEventArgs.md) + - [CapyEventArgs Constructor](M_CapyKit_CapyEventArgs__ctor.md) + - [CapyEventArgs Properties](Properties_T_CapyKit_CapyEventArgs.md) + - [Level Property](P_CapyKit_CapyEventArgs_Level.md) + - [Message Property](P_CapyKit_CapyEventArgs_Message.md) + - [MethodName Property](P_CapyKit_CapyEventArgs_MethodName.md) + - [CapyEventArgs Methods](Methods_T_CapyKit_CapyEventArgs.md) + - [CapyEventHandler Delegate](T_CapyKit_CapyEventHandler.md) + - [CapyEventReporter Class](T_CapyKit_CapyEventReporter.md) + - [CapyEventReporter Constructor](M_CapyKit_CapyEventReporter__cctor.md) + - [CapyEventReporter Methods](Methods_T_CapyKit_CapyEventReporter.md) + - [EmitEvent Method](M_CapyKit_CapyEventReporter_EmitEvent.md) + - [EmitEventOnce Method](M_CapyKit_CapyEventReporter_EmitEventOnce.md) + - [Subscribe Method](M_CapyKit_CapyEventReporter_Subscribe.md) + - [Unsubscribe Method](M_CapyKit_CapyEventReporter_Unsubscribe.md) + - [CapyEventReporter Fields](Fields_T_CapyKit_CapyEventReporter.md) + - [uniqueIdentifiers Field](F_CapyKit_CapyEventReporter_uniqueIdentifiers.md) + - [Color Enumeration](T_CapyKit_Color.md) + - [EventLevel Enumeration](T_CapyKit_EventLevel.md) + - [IPasswordAlgorithm Interface](T_CapyKit_IPasswordAlgorithm.md) + - [IPasswordAlgorithm Properties](Properties_T_CapyKit_IPasswordAlgorithm.md) + - [AlgorithmName Property](P_CapyKit_IPasswordAlgorithm_AlgorithmName.md) + - [IPasswordAlgorithm Methods](Methods_T_CapyKit_IPasswordAlgorithm.md) + - [Compare Method](M_CapyKit_IPasswordAlgorithm_Compare.md) + - [Encrypt Method](M_CapyKit_IPasswordAlgorithm_Encrypt.md) + - [Password Class](T_CapyKit_Password.md) + - [Password Constructor](M_CapyKit_Password__cctor.md) + - [Password Constructor](M_CapyKit_Password__ctor.md) + - [Password Properties](Properties_T_CapyKit_Password.md) + - [Algorithm Property](P_CapyKit_Password_Algorithm.md) + - [Hash Property](P_CapyKit_Password_Hash.md) + - [Pbkdf2Algorithm Property](P_CapyKit_Password_Pbkdf2Algorithm.md) + - [Salt Property](P_CapyKit_Password_Salt.md) + - [Password Methods](Methods_T_CapyKit_Password.md) + - [ToString Method](M_CapyKit_Password_ToString.md) + - [Password Fields](Fields_T_CapyKit_Password.md) + - [algorithm Field](F_CapyKit_Password_algorithm.md) + - [Pbkdf2Algorithm Class](T_CapyKit_Pbkdf2Algorithm.md) + - [Pbkdf2Algorithm Constructor](M_CapyKit_Pbkdf2Algorithm__ctor.md) + - [Pbkdf2Algorithm Properties](Properties_T_CapyKit_Pbkdf2Algorithm.md) + - [AlgorithmName Property](P_CapyKit_Pbkdf2Algorithm_AlgorithmName.md) + - [Pbkdf2Algorithm Methods](Methods_T_CapyKit_Pbkdf2Algorithm.md) + - [Encrypt Method](M_CapyKit_Pbkdf2Algorithm_Encrypt.md) + - [Pbkdf2Algorithm Fields](Fields_T_CapyKit_Pbkdf2Algorithm.md) + - [ITERATIONS Field](F_CapyKit_Pbkdf2Algorithm_ITERATIONS.md) + - [LENGTH Field](F_CapyKit_Pbkdf2Algorithm_LENGTH.md) + - [Pool Class](T_CapyKit_Pool_1.md) + - [Pool Constructor](Overload_CapyKit_Pool_1__ctor.md) + - [Pool(IEnumerable) Constructor](M_CapyKit_Pool_1__ctor.md) + - [Pool(Int32) Constructor](M_CapyKit_Pool_1__ctor_1.md) + - [Pool(Int32, Func) Constructor](M_CapyKit_Pool_1__ctor_2.md) + - [Pool Methods](Methods_T_CapyKit_Pool_1.md) + - [FillPoolItemCollection Method](Overload_CapyKit_Pool_1_FillPoolItemCollection.md) + - [FillPoolItemCollection(IEnumerable) Method](M_CapyKit_Pool_1_FillPoolItemCollection.md) + - [FillPoolItemCollection(Int32) Method](M_CapyKit_Pool_1_FillPoolItemCollection_1.md) + - [FillPoolItemCollection(Int32, Func) Method](M_CapyKit_Pool_1_FillPoolItemCollection_2.md) + - [GetAvailableItem Method](M_CapyKit_Pool_1_GetAvailableItem.md) + - [ReleaseItem Method](M_CapyKit_Pool_1_ReleaseItem.md) + - [Pool Fields](Fields_T_CapyKit_Pool_1.md) + - [poolItemCollection Field](F_CapyKit_Pool_1_poolItemCollection.md) + - [poolSize Field](F_CapyKit_Pool_1_poolSize.md) + - [PoolItem Class](T_CapyKit_PoolItem_1.md) + - [PoolItem Constructor](M_CapyKit_PoolItem_1__ctor.md) + - [PoolItem Properties](Properties_T_CapyKit_PoolItem_1.md) + - [Index Property](P_CapyKit_PoolItem_1_Index.md) + - [Item Property](P_CapyKit_PoolItem_1_Item.md) + - [Locked Property](P_CapyKit_PoolItem_1_Locked.md) + - [TypeName Property](P_CapyKit_PoolItem_1_TypeName.md) + - [PoolItem Methods](Methods_T_CapyKit_PoolItem_1.md) + - [ReleaseLock Method](M_CapyKit_PoolItem_1_ReleaseLock.md) + - [SetLock Method](M_CapyKit_PoolItem_1_SetLock.md) + - [ToString Method](M_CapyKit_PoolItem_1_ToString.md) + - [PoolItem Fields](Fields_T_CapyKit_PoolItem_1.md) + - [index Field](F_CapyKit_PoolItem_1_index.md) + - [item Field](F_CapyKit_PoolItem_1_item.md) + - [locked Field](F_CapyKit_PoolItem_1_locked.md) + - [typeName Field](F_CapyKit_PoolItem_1_typeName.md) + - [PropertyComparer Class](T_CapyKit_PropertyComparer_2.md) + - [PropertyComparer Constructor](M_CapyKit_PropertyComparer_2__ctor.md) + - [PropertyComparer Methods](Methods_T_CapyKit_PropertyComparer_2.md) + - [Equals Method](Overload_CapyKit_PropertyComparer_2_Equals.md) + - [Equals(T, T) Method](M_CapyKit_PropertyComparer_2_Equals.md) + - [GetHashCode Method](Overload_CapyKit_PropertyComparer_2_GetHashCode.md) + - [GetHashCode(T) Method](M_CapyKit_PropertyComparer_2_GetHashCode.md) + - [PropertyComparer Fields](Fields_T_CapyKit_PropertyComparer_2.md) + - [expression Field](F_CapyKit_PropertyComparer_2_expression.md) +- [CapyKit.Attributes Namespace](N_CapyKit_Attributes.md) + - [EnumerationAttribute Class](T_CapyKit_Attributes_EnumerationAttribute_1.md) + - [EnumerationAttribute Constructor](M_CapyKit_Attributes_EnumerationAttribute_1__ctor.md) + - [EnumerationAttribute Properties](Properties_T_CapyKit_Attributes_EnumerationAttribute_1.md) + - [Value Property](P_CapyKit_Attributes_EnumerationAttribute_1_Value.md) + - [EnumerationAttribute Methods](Methods_T_CapyKit_Attributes_EnumerationAttribute_1.md) + - [EnumerationDescriptionAttribute Class](T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) + - [EnumerationDescriptionAttribute Constructor](M_CapyKit_Attributes_EnumerationDescriptionAttribute__ctor.md) + - [EnumerationDescriptionAttribute Properties](Properties_T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) + - [EnumerationDescriptionAttribute Methods](Methods_T_CapyKit_Attributes_EnumerationDescriptionAttribute.md) +- [CapyKit.Extensions Namespace](N_CapyKit_Extensions.md) + - [EnumerationExtensions Class](T_CapyKit_Extensions_EnumerationExtensions.md) + - [EnumerationExtensions Methods](Methods_T_CapyKit_Extensions_EnumerationExtensions.md) + - [GetDescription Method](M_CapyKit_Extensions_EnumerationExtensions_GetDescription.md) + - [GetName Method](M_CapyKit_Extensions_EnumerationExtensions_GetName.md) + - [GetPrettyName Method](M_CapyKit_Extensions_EnumerationExtensions_GetPrettyName.md) + - [GetValue Method](M_CapyKit_Extensions_EnumerationExtensions_GetValue.md) + - [Parse Method](Overload_CapyKit_Extensions_EnumerationExtensions_Parse.md) + - [Parse(T, String) Method](M_CapyKit_Extensions_EnumerationExtensions_Parse__1.md) + - [Parse(T, String, Boolean) Method](M_CapyKit_Extensions_EnumerationExtensions_Parse__1_1.md) + - [LINQExtensions Class](T_CapyKit_Extensions_LINQExtensions.md) + - [LINQExtensions Methods](Methods_T_CapyKit_Extensions_LINQExtensions.md) + - [Distinct Method](M_CapyKit_Extensions_LINQExtensions_Distinct__2.md) + - [Filter Method](Overload_CapyKit_Extensions_LINQExtensions_Filter.md) + - [Filter(IEnumerable, Func) Method](M_CapyKit_Extensions_LINQExtensions_Filter__1.md) + - [Filter(IQueryable, Expression>) Method](M_CapyKit_Extensions_LINQExtensions_Filter__1_1.md) + - [LeftOuterJoin Method](Overload_CapyKit_Extensions_LINQExtensions_LeftOuterJoin.md) + - [LeftOuterJoin(IQueryable, IQueryable, Expression>, Expression>, Expression, R>>) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_2.md) + - [LeftOuterJoin(IEnumerable, IEnumerable, Func, Func, Func, R>, Func) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4.md) + - [LeftOuterJoin(IQueryable, IQueryable, Expression>, Expression>, Func, R>, Func) Method](M_CapyKit_Extensions_LINQExtensions_LeftOuterJoin__4_1.md) + - [Page Method](Overload_CapyKit_Extensions_LINQExtensions_Page.md) + - [Page(IEnumerable, Int32, Int32) Method](M_CapyKit_Extensions_LINQExtensions_Page__1.md) + - [Page(IQueryable, Int32, Int32) Method](M_CapyKit_Extensions_LINQExtensions_Page__1_1.md) + - [PageCount Method](Overload_CapyKit_Extensions_LINQExtensions_PageCount.md) + - [PageCount(IEnumerable, Int32) Method](M_CapyKit_Extensions_LINQExtensions_PageCount__1.md) + - [PageCount(IQueryable, Int32) Method](M_CapyKit_Extensions_LINQExtensions_PageCount__1_1.md) + - [StringExtensions Class](T_CapyKit_Extensions_StringExtensions.md) + - [StringExtensions Methods](Methods_T_CapyKit_Extensions_StringExtensions.md) + - [IfNullOrEmpty Method](M_CapyKit_Extensions_StringExtensions_IfNullOrEmpty.md) + - [IfNullOrWhiteSpace Method](M_CapyKit_Extensions_StringExtensions_IfNullOrWhiteSpace.md) +- [CapyKit.Helpers Namespace](N_CapyKit_Helpers.md) + - [CompressionHelper Class](T_CapyKit_Helpers_CompressionHelper.md) + - [CompressionHelper Methods](Methods_T_CapyKit_Helpers_CompressionHelper.md) + - [Compress Method](M_CapyKit_Helpers_CompressionHelper_Compress.md) + - [CompressToString Method](M_CapyKit_Helpers_CompressionHelper_CompressToString.md) + - [Decompress Method](Overload_CapyKit_Helpers_CompressionHelper_Decompress.md) + - [Decompress(Byte[]) Method](M_CapyKit_Helpers_CompressionHelper_Decompress__1.md) + - [Decompress(String) Method](M_CapyKit_Helpers_CompressionHelper_Decompress__1_1.md) + - [DecompressToString Method](M_CapyKit_Helpers_CompressionHelper_DecompressToString.md) + - [LanguageHelper Class](T_CapyKit_Helpers_LanguageHelper.md) + - [LanguageHelper Constructor](M_CapyKit_Helpers_LanguageHelper__ctor.md) + - [LanguageHelper Methods](Methods_T_CapyKit_Helpers_LanguageHelper.md) + - [CamelCaseToHumanReadable Method](M_CapyKit_Helpers_LanguageHelper_CamelCaseToHumanReadable.md) + - [SecurityHelper Class](T_CapyKit_Helpers_SecurityHelper.md) + - [SecurityHelper Constructor](M_CapyKit_Helpers_SecurityHelper__ctor.md) + - [SecurityHelper Methods](Methods_T_CapyKit_Helpers_SecurityHelper.md) + - [CompareHashedPassword Method](M_CapyKit_Helpers_SecurityHelper_CompareHashedPassword.md) + - [CompareSessionID Method](M_CapyKit_Helpers_SecurityHelper_CompareSessionID.md) + - [CompareStrings Method](M_CapyKit_Helpers_SecurityHelper_CompareStrings.md) + - [GetRandomBytes Method](M_CapyKit_Helpers_SecurityHelper_GetRandomBytes.md) + - [GetRandomPassword Method](M_CapyKit_Helpers_SecurityHelper_GetRandomPassword.md) + - [GetRandomString Method](Overload_CapyKit_Helpers_SecurityHelper_GetRandomString.md) + - [GetRandomString(Int32) Method](M_CapyKit_Helpers_SecurityHelper_GetRandomString.md) + - [GetRandomString(Int32, ValidCharacterCollection[]) Method](M_CapyKit_Helpers_SecurityHelper_GetRandomString_1.md) + - [GetValidCharacterComposition Method](M_CapyKit_Helpers_SecurityHelper_GetValidCharacterComposition.md) + - [HashPassword Method](M_CapyKit_Helpers_SecurityHelper_HashPassword.md) + - [Pbkdf2 Method](Overload_CapyKit_Helpers_SecurityHelper_Pbkdf2.md) + - [Pbkdf2(String) Method](M_CapyKit_Helpers_SecurityHelper_Pbkdf2.md) + - [Pbkdf2(String, Byte[]) Method](M_CapyKit_Helpers_SecurityHelper_Pbkdf2_1.md) + - [SecurityHelper Fields](Fields_T_CapyKit_Helpers_SecurityHelper.md) + - [LOWER_CASE_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_LOWER_CASE_CHARACTERS.md) + - [NUMBER_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_NUMBER_CHARACTERS.md) + - [saltSize Field](F_CapyKit_Helpers_SecurityHelper_saltSize.md) + - [SPECIAL_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_SPECIAL_CHARACTERS.md) + - [UPPER_CASE_CHARACTERS Field](F_CapyKit_Helpers_SecurityHelper_UPPER_CASE_CHARACTERS.md) + - [SerializationHelper Class](T_CapyKit_Helpers_SerializationHelper.md) + - [SerializationHelper Methods](Methods_T_CapyKit_Helpers_SerializationHelper.md) + - [Deserialize Method](Overload_CapyKit_Helpers_SerializationHelper_Deserialize.md) + - [Deserialize(Byte[]) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1.md) + - [Deserialize(Stream) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1_1.md) + - [Deserialize(String) Method](M_CapyKit_Helpers_SerializationHelper_Deserialize__1_2.md) + - [SerializeToBytes Method](M_CapyKit_Helpers_SerializationHelper_SerializeToBytes.md) + - [SerializeToString Method](M_CapyKit_Helpers_SerializationHelper_SerializeToString.md) + - [ValidCharacterCollection Enumeration](T_CapyKit_Helpers_ValidCharacterCollection.md) diff --git a/Documentation/Help/fa7407d1-9116-4ad7-a9ab-ed094685b070.md b/Documentation/Help/fa7407d1-9116-4ad7-a9ab-ed094685b070.md new file mode 100644 index 0000000..d07661f --- /dev/null +++ b/Documentation/Help/fa7407d1-9116-4ad7-a9ab-ed094685b070.md @@ -0,0 +1,15 @@ +# Version 1.0.0.0 + +Version [TODO: Version] was released on [TODO: Date]. + + +## Changes in This Release +
  • [TODO: Add change items here]

+ + + +## See Also + + +#### Other Resources +Version History diff --git a/README.md b/README.md index 42e3fad..97a264b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,3 @@ A versatile collection of C# utilities and extensions designed to supercharge an ## Documentation You can find an early version of the automatically generated documentation [here](./Documentation/Help/Home.md). - -## TODO - -Obviously this repository is in pretty rough shape right now while I make the full transition from the private repository to this one. Please bear with me. :)