'初始化'
This commit is contained in:
BIN
WindowsFormsApp6/bin/Debug/BouncyCastle.Cryptography.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/BouncyCastle.Cryptography.dll
Normal file
Binary file not shown.
29620
WindowsFormsApp6/bin/Debug/BouncyCastle.Cryptography.xml
Normal file
29620
WindowsFormsApp6/bin/Debug/BouncyCastle.Cryptography.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/EPPlus.Interfaces.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/EPPlus.Interfaces.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/EPPlus.System.Drawing.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/EPPlus.System.Drawing.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/EPPlus.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/EPPlus.dll
Normal file
Binary file not shown.
72359
WindowsFormsApp6/bin/Debug/EPPlus.xml
Normal file
72359
WindowsFormsApp6/bin/Debug/EPPlus.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/Enums.NET.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/Enums.NET.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/Enums.NET.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/Enums.NET.pdb
Normal file
Binary file not shown.
4801
WindowsFormsApp6/bin/Debug/Enums.NET.xml
Normal file
4801
WindowsFormsApp6/bin/Debug/Enums.NET.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/ExtendedNumerics.BigDecimal.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/ExtendedNumerics.BigDecimal.dll
Normal file
Binary file not shown.
769
WindowsFormsApp6/bin/Debug/ExtendedNumerics.BigDecimal.xml
Normal file
769
WindowsFormsApp6/bin/Debug/ExtendedNumerics.BigDecimal.xml
Normal file
@@ -0,0 +1,769 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>ExtendedNumerics.BigDecimal</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ExtendedNumerics.BigDecimal">
|
||||
<summary>
|
||||
<para>Arbitrary precision decimal. All operations are exact, except for division.</para>
|
||||
<para>Division never determines more digits than the given precision.</para>
|
||||
<para>Based on code by Jan Christoph Bernack (http://stackoverflow.com/a/4524254 or jc.bernack at gmail.com)</para>
|
||||
<para>Modified and extended by Adam White (https://csharpcodewhisperer.blogspot.com/)</para>
|
||||
<para>Further modified by Rick Harker, Rick.Rick.Harker@gmail.com</para>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.#ctor(System.Tuple{System.Numerics.BigInteger,System.Int32})">
|
||||
<summary>
|
||||
Private Constructor. This one bypasses <see cref="P:ExtendedNumerics.BigDecimal.AlwaysTruncate"/> and <see cref="P:ExtendedNumerics.BigDecimal.AlwaysNormalize"/> check and behavior.
|
||||
</summary>
|
||||
<param name="tuple"></param>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Ten">
|
||||
<summary>Gets a value that represents the number 0 (zero).</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.One">
|
||||
<summary>Gets a value that represents the number 1 ().</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Zero">
|
||||
<summary>Gets a value that represents the number 0 (zero).</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.OneHalf">
|
||||
<summary>Gets a value that represents the number 0.5.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.MinusOne">
|
||||
<summary>Gets a value that represents the number -1 .</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.E">
|
||||
<summary>Gets a value that represents the number e, also called Euler's number.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Pi">
|
||||
<summary>Gets a value that represents the number Pi.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.π">
|
||||
<summary>Gets a value that represents the number Pi.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Precision">
|
||||
<summary>
|
||||
Sets the desired precision of all BigDecimal instances, in terms of the number of .
|
||||
|
||||
|
||||
If AlwaysTruncate is set to true all operations are affected.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.AlwaysTruncate">
|
||||
<summary>
|
||||
Specifies whether the significant digits should be truncated to the given precision after each operation.
|
||||
Setting this to true will tend to accumulate errors at the precision boundary after several arithmetic operations.
|
||||
Therefore, you should prefer using <see cref="M:ExtendedNumerics.BigDecimal.Round(ExtendedNumerics.BigDecimal,System.Int32)"/> explicitly when you need it instead,
|
||||
such st at the end of a series of operations, especially if you are expecting the result to be truncated at the precision length.
|
||||
This should generally be left disabled by default.
|
||||
This setting may be useful if you are running into memory or performance issues, as could conceivably be brought on by many operations on irrational numbers.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.AlwaysNormalize">
|
||||
<summary>Specifies whether a call to Normalize is made after every operation and during constructor invocation. The default value is true.</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.BigDecimal.Mantissa">
|
||||
<summary>The mantissa of the internal floating point number representation of this BigDecimal.</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.BigDecimal.Exponent">
|
||||
<summary>The exponent of the internal floating point number representation of this BigDecimal.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Sign">
|
||||
<summary>Gets a number that indicates the sign (negative, positive, or zero) of the current <see cref="T:ExtendedNumerics.BigDecimal" /> object. </summary>
|
||||
<returns>-1 if the value of this object is negative, 0 if the value of this object is zero or 1 if the value of this object is positive.</returns>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.SignifigantDigits">
|
||||
<summary>Gets the number of significant digits in <see cref="T:ExtendedNumerics.BigDecimal"/>.
|
||||
Essentially tells you the number of digits in the mantissa.</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.Length">
|
||||
<summary>The length of the BigDecimal value (Equivalent to SignifigantDigits).</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.BigDecimal.WholeValue">
|
||||
<summary>
|
||||
Gets the whole-number integer (positive or negative) value of this BigDecimal, so everything to the left of the decimal place.
|
||||
Equivalent to the Truncate function for a float.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.IsZero">
|
||||
<summary>This method returns true if the BigDecimal is equal to zero, false otherwise.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.IsPositve">
|
||||
<summary>This method returns true if the BigDecimal is greater than zero, false otherwise.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.IsNegative">
|
||||
<summary>This method returns true if the BigDecimal is less than zero, false otherwise.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.System#IComparable#CompareTo(System.Object)">
|
||||
<summary>
|
||||
Compares the current instance with another object of the same type and returns
|
||||
an integer that indicates whether the current instance precedes, follows, or
|
||||
occurs in the same position in the sort order as the other object.
|
||||
</summary>
|
||||
<param name="obj"> An object to compare with this instance.</param>
|
||||
<returns>
|
||||
A return value of less than zero means this instance precedes obj in the sort order.
|
||||
A return value of zero means this instance occurs in the same position in the sort order as obj.
|
||||
A return value of greater than zero means this instance follows obj in the sort order.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Equals(System.Nullable{ExtendedNumerics.BigDecimal},System.Nullable{ExtendedNumerics.BigDecimal})">
|
||||
<summary>Static equality test.</summary>
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Parse(System.Double)">
|
||||
<summary>Converts the string representation of a decimal to the BigDecimal equivalent.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Parse(System.String)">
|
||||
<summary>Converts the string representation of a decimal to the BigDecimal equivalent.</summary>
|
||||
<param name="input">A string that contains a number to convert.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Parse(System.String,System.IFormatProvider)">
|
||||
<summary>
|
||||
Converts the string representation of a decimal in a specified culture-specific format to its BigDecimal equivalent.
|
||||
</summary>
|
||||
<param name="input">A string that contains a number to convert.</param>
|
||||
<param name="provider">An object that provides culture-specific formatting information about value.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.TryParse(System.String,ExtendedNumerics.BigDecimal@)">
|
||||
<summary>
|
||||
Tries to convert the string representation of a number to its BigDecimal equivalent, and returns a value that indicates whether the conversion succeeded.
|
||||
</summary>
|
||||
<param name="input">The string representation of a number.</param>
|
||||
<param name="result">When this method returns, this out parameter contains the BigDecimal equivalent
|
||||
to the number that is contained in value, or default(BigDecimal) if the conversion fails.
|
||||
The conversion fails if the value parameter is null or is not of the correct format.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.TryParse(System.String,System.IFormatProvider,ExtendedNumerics.BigDecimal@)">
|
||||
<summary>
|
||||
Tries to convert the string representation of a number in a specified style and culture-specific format
|
||||
to its BigDecimal equivalent, and returns a value that indicates whether the conversion succeeded.
|
||||
</summary>
|
||||
<param name="input">The string representation of a number.</param>
|
||||
<param name="provider">An object that supplies culture-specific formatting information about value.</param>
|
||||
<param name="result">When this method returns, this out parameter contains the BigDecimal equivalent
|
||||
to the number that is contained in value, or default(BigDecimal) if the conversion fails.
|
||||
The conversion fails if the value parameter is null or is not of the correct format.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Normalize(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Removes any trailing zeros on the mantissa, adjusts the exponent, and returns a new <see cref="T:ExtendedNumerics.BigDecimal" />.</summary>
|
||||
<param name="value"></param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.GetDecimalIndex">
|
||||
<summary>Returns the zero-based index of the decimal point, if the BigDecimal were rendered as a string.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.GetWholePart">
|
||||
<summary>
|
||||
Returns the whole number integer part of the BigDecimal, dropping anything right of the decimal point. Essentially behaves like Math.Truncate(). For
|
||||
example, GetWholePart() would return 3 for Math.PI.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.GetFractionalPart">
|
||||
<summary>Gets the fractional part of the BigDecimal, setting everything left of the decimal point to zero.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.op_Explicit(ExtendedNumerics.BigDecimal)~System.Double">
|
||||
<summary>Converts <paramref name="value" /> to an <see cref="T:System.Double" /> if possible, otherwise throws <see cref="T:System.OverflowException" /> .</summary>
|
||||
<param name="value"></param>
|
||||
<exception cref="T:System.OverflowException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.op_Explicit(ExtendedNumerics.BigDecimal)~System.Single">
|
||||
<summary>Converts <paramref name="value" /> to an <see cref="T:System.Single" /> if possible, otherwise throws <see cref="T:System.OverflowException" /> .</summary>
|
||||
<param name="value"></param>
|
||||
<exception cref="T:System.OverflowException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.op_Explicit(ExtendedNumerics.BigDecimal)~System.Decimal">
|
||||
<summary>Converts <paramref name="value" /> to an <see cref="T:System.Decimal" /> if possible, otherwise throws <see cref="T:System.OverflowException" /> .</summary>
|
||||
<param name="value"></param>
|
||||
<exception cref="T:System.OverflowException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.op_Explicit(ExtendedNumerics.BigDecimal)~System.Int32">
|
||||
<summary>Converts <paramref name="value" /> to an <see cref="T:System.Int32" /> if possible, otherwise throws <see cref="T:System.OverflowException" /> .</summary>
|
||||
<param name="value"></param>
|
||||
<exception cref="T:System.OverflowException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.op_Explicit(ExtendedNumerics.BigDecimal)~System.UInt32">
|
||||
<summary>Converts <paramref name="value" /> to an <see cref="T:System.UInt32" /> if possible, otherwise throws <see cref="T:System.OverflowException" /> .</summary>
|
||||
<param name="value"></param>
|
||||
<exception cref="T:System.OverflowException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Min(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Returns the smaller of two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Max(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Returns the larger of two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Negate(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Returns the result of multiplying a BigDecimal by negative one.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Add(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Adds two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Subtract(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Subtracts two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Multiply(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Multiplies two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Mod(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Divides two BigDecimal values, returning the remainder and discarding the quotient.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Divide(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Divides two BigDecimal values.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Pow(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)">
|
||||
<summary>Returns a specified number raised to the specified power.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Pow_Fast(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)">
|
||||
<summary>
|
||||
Returns a specified number raised to the specified power.
|
||||
</summary>
|
||||
<remarks>
|
||||
This version uses exponentiation by squaring.
|
||||
This method should take fewer steps than <see cref="M:ExtendedNumerics.BigDecimal.Pow_Precision(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)"/>, and so is used by default
|
||||
unless <see cref="P:ExtendedNumerics.BigDecimal.AlwaysTruncate"/> is <see langword="true"/>,
|
||||
in which case <see cref="M:ExtendedNumerics.BigDecimal.Pow_Precision(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)"/> is used as it loses precision slower.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Pow_Precision(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)">
|
||||
<summary>
|
||||
Returns a specified number raised to the specified power.
|
||||
</summary>
|
||||
<remarks>
|
||||
This version loses precision slower, and so is used when <see cref="P:ExtendedNumerics.BigDecimal.AlwaysTruncate"/> is set to <see langword="true"/>.
|
||||
Otherwise <see cref="M:ExtendedNumerics.BigDecimal.Pow_Fast(ExtendedNumerics.BigDecimal,System.Numerics.BigInteger)"/> is used because it is more performant.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Pow(System.Double,System.Double)">
|
||||
<summary>Returns a specified number raised to the specified power.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.NthRoot(ExtendedNumerics.BigDecimal,System.Int32,System.Int32)">
|
||||
<summary> Returns the Nth root of the supplied input decimal to the given number of places. </summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.PlacesLeftOfDecimal(ExtendedNumerics.BigDecimal)">
|
||||
<summary> Returns the number of digits or place values to the left of the decimal point. </summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.PlacesRightOfDecimal(ExtendedNumerics.BigDecimal)">
|
||||
<summary> Returns the number of digits or place values to the right of the decimal point. </summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.AlignExponent(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal)">
|
||||
<summary>Returns the mantissa of value, aligned to the exponent of reference. Assumes the exponent of value is larger than of reference.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Abs(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Returns the absolute value of the BigDecimal</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Truncate(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Truncates the BigDecimal at the decimal point. Equivalent to using Floor.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Round(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Rounds a BigDecimal value to the nearest integral value.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Round(ExtendedNumerics.BigDecimal,System.MidpointRounding)">
|
||||
<summary>Rounds a BigDecimal value to the nearest integral value. A parameter specifies how to round the value if it is midway between two numbers.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Round(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Rounds a BigDecimal to the given number of digits to the right of the decimal point.
|
||||
Pass a negative precision value to round (zero) digits to the left of the decimal point in a manner that mimics Excel's ROUNDDOWN function.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Ceiling(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Rounds a BigDecimal up to the next largest integer value, even if the fractional part is less than one half. Equivalent to obtaining the floor and then adding one.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Floor(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Rounds a BigDecimal down to the next smallest integer value, even if the fractional part is greater than one half. Equivalent to discarding everything right of the decimal point.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sin(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision sine function.
|
||||
The input should be the angle in radians.
|
||||
The input must be restricted to the range of -π/2 <= θ <= π/2.
|
||||
If your input is negative, just flip the sign.
|
||||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sin(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision sine function.
|
||||
The input should be the angle in radians.
|
||||
The input must be restricted to the range of -π/2 <= θ <= π/2.
|
||||
If your input is negative, just flip the sign.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cos(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision cosine function.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cos(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision cosine function.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Tan(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision tangent function.
|
||||
The input must not be π/2 or 3π/2, as the tangent is undefined at that value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Tan(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision tangent function.
|
||||
The input must not be π/2 or 3π/2, as the tangent is undefined at that value.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cot(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision cotangent function.
|
||||
The input must not be zero, as the cotangent is undefined at that value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cot(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision cotangent function.
|
||||
The input must not be zero, as the cotangent is undefined at that value.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sec(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision secant function.
|
||||
The input must not be (2*n + 1)*π/2 (an odd multiple of π/2), as the secant is undefined at that value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sec(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision secant function.
|
||||
The input must not be (2*n + 1)*π/2 (an odd multiple of π/2), as the secant is undefined at that value.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Csc(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision cosecant function.
|
||||
The input must not be zero or π, as the cosecant is undefined at that value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Csc(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision cosecant function.
|
||||
The input must not be zero or π, as the cosecant is undefined at that value.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sinh(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision hyperbolic sine function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sinh(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision hyperbolic sine function.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cosh(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision Hyperbolic cosine function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Cosh(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision Hyperbolic cosine function.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Tanh(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision hyperbolic tangent function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Tanh(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision hyperbolic tangent function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Coth(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision hyperbolic cotangent function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Coth(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision hyperbolic cotangent function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sech(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision hyperbolic secant function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Sech(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision hyperbolic secant function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Csch(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Arbitrary precision hyperbolic cosecant function.
|
||||
The input must not be zero.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Csch(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Arbitrary precision hyperbolic cosecant function.
|
||||
The input must not be zero.
|
||||
</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arcsin(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision inverse sine function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arcsin(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision inverse sine function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccos(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision inverse cosine function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccos(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision inverse cosine function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arctan(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision inverse tangent function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arctan(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision inverse tangent function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccot(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision inverse cotangent function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccot(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision inverse cotangent function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccsc(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Arbitrary precision inverse cosecant function.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Arccsc(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Arbitrary precision inverse cosecant function.</summary>
|
||||
<param name="radians">The argument radians.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Exp(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Calculates e^x to arbitrary precision.</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Exp(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>Calculates e^x to arbitrary precision.</summary>
|
||||
<param name="x">The exponent to raise e to the power of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Ln(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Returns the natural logarithm of the input.
|
||||
</summary>
|
||||
<param name="argument">The argument to take the natural logarithm of.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Ln(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Returns the natural logarithm of the input to a specified precision.
|
||||
</summary>
|
||||
<param name="argument">The argument to take the natural logarithm of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.LogNatural(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Internal implementation of the natural log function to arbitrary precision.
|
||||
</summary>
|
||||
<param name="argument">The argument to take the natural logarithm of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.LogN(System.Int32,ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Returns the logarithm of an argument in an arbitrary base.
|
||||
</summary>
|
||||
<param name="base">The base of the logarithm.</param>
|
||||
<param name="argument">The argument to take the logarithm of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Log2(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Returns the base-2 logarithm of an argument.
|
||||
</summary>
|
||||
<param name="argument">The argument to take the base-2 logarithm of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.Log10(ExtendedNumerics.BigDecimal,System.Int32)">
|
||||
<summary>
|
||||
Returns the base-10 logarithm of an argument.
|
||||
</summary>
|
||||
<param name="argument">The argument to take the base-10 logarithm of.</param>
|
||||
<param name="precision">The desired precision in terms of the number of digits to the right of the decimal.</param>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.BigDecimal.ToScientificENotation(ExtendedNumerics.BigDecimal)">
|
||||
<summary>Allow the BigDecimal to be formatted with the E notation.</summary>
|
||||
<param name="bigDecimal"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.BigIntegerHelper.NthRoot(System.Numerics.BigInteger,System.Int32,System.Numerics.BigInteger@)">
|
||||
<summary>
|
||||
<para>Returns the NTHs root of a <see cref="T:System.Numerics.BigInteger"/> with <paramref name="remainder"/>.</para>
|
||||
<para>The root must be greater than or equal to 1 or value must be a positive integer.</para>
|
||||
</summary>
|
||||
<param name="value"></param>
|
||||
<param name="root"></param>
|
||||
<param name="remainder"></param>
|
||||
<returns></returns>
|
||||
<exception cref="T:System.ArgumentException"></exception>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.BigIntegerHelper.TryParseFraction(System.String,System.Nullable{ExtendedNumerics.BigDecimal}@)">
|
||||
<summary>
|
||||
ttempt to parse a fraction from a String.
|
||||
</summary>
|
||||
<example>" 1234.45 / 346.456 "</example>
|
||||
<param name="numberString"></param>
|
||||
<param name="result"></param>
|
||||
<exception cref="T:System.OverflowException">Uncomment this if you want an exception instead of a Boolean.</exception>
|
||||
</member>
|
||||
<member name="T:ExtendedNumerics.Helpers.BigIntegerHelper.FastFactorial">
|
||||
<summary>
|
||||
<para>
|
||||
Calculates a factorial by the divide and conquer method.
|
||||
This is faster than repeatedly multiplying the next value by a running product
|
||||
by not repeatedly multiplying by large values.
|
||||
Essentially, this multiplies every number in the array with its neighbor,
|
||||
returning an array half as long of products of two numbers.
|
||||
We then take that array and multiply each pair of values in the array
|
||||
with its neighbor, resulting in another array half the length of the previous one, and so on...
|
||||
This results in many multiplications of small, equally sized operands
|
||||
and only a few multiplications of larger operands.
|
||||
In the limit, this is more efficient.
|
||||
</para>
|
||||
<para>
|
||||
The factorial function is used during the calculation of trigonometric functions to arbitrary precision.
|
||||
</para>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.BigIntegerHelper.FastFactorial.MultiplyRange(System.Numerics.BigInteger,System.Numerics.BigInteger)">
|
||||
<summary>Divide the range of numbers to multiply in half recursively.</summary>
|
||||
<param name="from"></param>
|
||||
<param name="to"></param>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.After">
|
||||
<summary>1</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.Before">
|
||||
<summary>-1</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.NullsDefault">
|
||||
<summary>Default to <see cref="F:ExtendedNumerics.Helpers.SortingOrder.NullsFirst" /> in a sort operation.</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.NullsFirst">
|
||||
<summary>Return nulls first in a sort operation.</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.NullsLast">
|
||||
<summary>Return nulls last in a sort operation.</summary>
|
||||
</member>
|
||||
<member name="F:ExtendedNumerics.Helpers.SortingOrder.Same">
|
||||
<summary>0</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.TrigonometricHelper.GetPrecisionTarget(System.Int32)">
|
||||
<summary>
|
||||
Common function to generate the target value to compare against to see if
|
||||
an operation has reached sufficient precision.
|
||||
The point of this method instead of having it inline is that we have only
|
||||
one place to change if we need to increase the value we are adding to
|
||||
precision to get adjustedPrecision.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.TrigonometricHelper.ModOddHalfPi(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Return 1 if radians is an odd multiple of π/2, 0 otherwise.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.TrigonometricHelper.TaylorSeriesSum(ExtendedNumerics.BigDecimal,ExtendedNumerics.BigDecimal,System.Numerics.BigInteger,System.Numerics.BigInteger,System.Numerics.BigInteger,System.Boolean,System.Int32)">
|
||||
<summary>
|
||||
Calculates a Taylor Series Sum until the specified precision is met.
|
||||
Based on its parameters, this can approximate several different functions
|
||||
including the sin, cos, sinh, cosh, and exp trigonometric functions.
|
||||
</summary>
|
||||
<param name="radians">
|
||||
The indeterminate value in the Taylor Series that gets multiplied by each term, raised to some
|
||||
power.
|
||||
</param>
|
||||
<param name="sumStart">The value to initialize the running total to. Typically, this is either zero or one.</param>
|
||||
<param name="counterStart">The term number to start the series at. Typically, this is either zero or one.</param>
|
||||
<param name="jump">
|
||||
How much to increment the term index each iteration.
|
||||
If you want to sum only the even terms, set the counterStart to an even number and this parameter to two.
|
||||
</param>
|
||||
<param name="multiplier">
|
||||
Each term is multiplied by a variable called sign. By default, sign is equal to 1.
|
||||
Each iteration, sign is set to sign multiplied by this value.
|
||||
The point of this is to allow every other term to be negative (so subtracted from the sum) by setting this to
|
||||
parameter to -1.
|
||||
Setting this to parameter to -1 will flip the sign of the sign variable every iteration.
|
||||
Since this gets multiplied by the term, the effect is to flip the sign of every other term.
|
||||
Set this parameter to 1 if all the terms should remain positive.
|
||||
</param>
|
||||
<param name="factorialDenominator">
|
||||
A boolean indicating if the denominator of the term should be passed to the factorial function.
|
||||
Typically, this is true, but sometimes the factorial in the denominator cancels out,
|
||||
and so we need a way to turn this off.
|
||||
</param>
|
||||
<param name="precision">
|
||||
The required precision to achieve before returning, in terms of the number of correct digits to the right of the
|
||||
decimal point.
|
||||
</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:ExtendedNumerics.Helpers.TrigonometricHelper.WrapInput(ExtendedNumerics.BigDecimal)">
|
||||
<summary>
|
||||
Wraps the input into the range:
|
||||
-π/2 <= θ <= π/2
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:ExtendedNumerics.Properties.LanguageResources">
|
||||
<summary>
|
||||
A strongly-typed resource class, for looking up localized strings, etc.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.ResourceManager">
|
||||
<summary>
|
||||
Returns the cached ResourceManager instance used by this class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Culture">
|
||||
<summary>
|
||||
Overrides the current thread's CurrentUICulture property for all
|
||||
resource lookups using this strongly typed resource class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arg_MustBeAPositiveInteger">
|
||||
<summary>
|
||||
Looks up a localized string similar to Must be a positive integer..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arg_MustBeGreaterThanOrEqualToOne">
|
||||
<summary>
|
||||
Looks up a localized string similar to Must be greater than or equal to 1.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arg_MustBeOfType">
|
||||
<summary>
|
||||
Looks up a localized string similar to Argument must be of type {0}.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arg_MustNotEqualZero">
|
||||
<summary>
|
||||
Looks up a localized string similar to {0} must not equal zero..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arg_NegativePrecision">
|
||||
<summary>
|
||||
Looks up a localized string similar to Negative precision cannot round left of the decimal point more place values than there are whole number digits..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Cot_Pi">
|
||||
<summary>
|
||||
Looks up a localized string similar to The cotangent of π is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Cot_Zero">
|
||||
<summary>
|
||||
Looks up a localized string similar to The cotangent of zero is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Csc_Pi">
|
||||
<summary>
|
||||
Looks up a localized string similar to The cosecant of π is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Csc_Zero">
|
||||
<summary>
|
||||
Looks up a localized string similar to The cosecant of zero is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Csch_Zero">
|
||||
<summary>
|
||||
Looks up a localized string similar to The hyperbolic cosecant of zero is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Sec_OddPiOver2">
|
||||
<summary>
|
||||
Looks up a localized string similar to The secant of (2*n + 1)*π/2 (an odd multiple of π/2) is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Tan_3PiOver2">
|
||||
<summary>
|
||||
Looks up a localized string similar to The tangent of 3π/2 is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Arithmetic_Trig_Undefined_Tan_PiOver2">
|
||||
<summary>
|
||||
Looks up a localized string similar to The tangent of π/2 is undefined..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.NotFinite_NaN">
|
||||
<summary>
|
||||
Looks up a localized string similar to value is not a number (NaN)..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.NotSupported_NegativePower">
|
||||
<summary>
|
||||
Looks up a localized string similar to Cannot raise zero to a negative power..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_BigDecimal_Infinity">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal cannot represent infinity..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_Decimal">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal is too large for a Decimal..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_Double">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal is too large for a Double..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_Fraction">
|
||||
<summary>
|
||||
Looks up a localized string similar to Couldn't parse numerator or denominator..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_Int32">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal is too large for a Int32..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_Single">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal is too large for a Single..
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ExtendedNumerics.Properties.LanguageResources.Overflow_UInt32">
|
||||
<summary>
|
||||
Looks up a localized string similar to BigDecimal is too large for a UInt32..
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.pdb
Normal file
Binary file not shown.
11330
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.xml
Normal file
11330
WindowsFormsApp6/bin/Debug/ICSharpCode.SharpZipLib.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/MathNet.Numerics.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/MathNet.Numerics.dll
Normal file
Binary file not shown.
53733
WindowsFormsApp6/bin/Debug/MathNet.Numerics.xml
Normal file
53733
WindowsFormsApp6/bin/Debug/MathNet.Numerics.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
1523
WindowsFormsApp6/bin/Debug/Microsoft.IO.RecyclableMemoryStream.xml
Normal file
1523
WindowsFormsApp6/bin/Debug/Microsoft.IO.RecyclableMemoryStream.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NModbus4.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NModbus4.dll
Normal file
Binary file not shown.
2393
WindowsFormsApp6/bin/Debug/NModbus4.xml
Normal file
2393
WindowsFormsApp6/bin/Debug/NModbus4.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NPOI.Core.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.Core.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/NPOI.Core.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.Core.pdb
Normal file
Binary file not shown.
49401
WindowsFormsApp6/bin/Debug/NPOI.Core.xml
Normal file
49401
WindowsFormsApp6/bin/Debug/NPOI.Core.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NPOI.OOXML.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OOXML.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/NPOI.OOXML.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OOXML.pdb
Normal file
Binary file not shown.
14818
WindowsFormsApp6/bin/Debug/NPOI.OOXML.xml
Normal file
14818
WindowsFormsApp6/bin/Debug/NPOI.OOXML.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.pdb
Normal file
Binary file not shown.
3245
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.xml
Normal file
3245
WindowsFormsApp6/bin/Debug/NPOI.OpenXml4Net.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.pdb
Normal file
Binary file not shown.
5023
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.xml
Normal file
5023
WindowsFormsApp6/bin/Debug/NPOI.OpenXmlFormats.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/NSax.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/NSax.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/SixLabors.Fonts.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/SixLabors.Fonts.dll
Normal file
Binary file not shown.
11499
WindowsFormsApp6/bin/Debug/SixLabors.Fonts.xml
Normal file
11499
WindowsFormsApp6/bin/Debug/SixLabors.Fonts.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/SixLabors.ImageSharp.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/SixLabors.ImageSharp.dll
Normal file
Binary file not shown.
64535
WindowsFormsApp6/bin/Debug/SixLabors.ImageSharp.xml
Normal file
64535
WindowsFormsApp6/bin/Debug/SixLabors.ImageSharp.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/SunnyUI.Common.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/SunnyUI.Common.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/SunnyUI.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/SunnyUI.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/System.Buffers.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Buffers.dll
Normal file
Binary file not shown.
38
WindowsFormsApp6/bin/Debug/System.Buffers.xml
Normal file
38
WindowsFormsApp6/bin/Debug/System.Buffers.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><doc>
|
||||
<assembly>
|
||||
<name>System.Buffers</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Buffers.ArrayPool`1">
|
||||
<summary>Provides a resource pool that enables reusing instances of type <see cref="T[]"></see>.</summary>
|
||||
<typeparam name="T">The type of the objects that are in the resource pool.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Create">
|
||||
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class.</summary>
|
||||
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Create(System.Int32,System.Int32)">
|
||||
<summary>Creates a new instance of the <see cref="T:System.Buffers.ArrayPool`1"></see> class using the specifed configuration.</summary>
|
||||
<param name="maxArrayLength">The maximum length of an array instance that may be stored in the pool.</param>
|
||||
<param name="maxArraysPerBucket">The maximum number of array instances that may be stored in each bucket in the pool. The pool groups arrays of similar lengths into buckets for faster access.</param>
|
||||
<returns>A new instance of the <see cref="System.Buffers.ArrayPool`1"></see> class with the specified configuration.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Rent(System.Int32)">
|
||||
<summary>Retrieves a buffer that is at least the requested length.</summary>
|
||||
<param name="minimumLength">The minimum length of the array.</param>
|
||||
<returns>An array of type <see cref="T[]"></see> that is at least <paramref name="minimumLength">minimumLength</paramref> in length.</returns>
|
||||
</member>
|
||||
<member name="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)">
|
||||
<summary>Returns an array to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method on the same <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
|
||||
<param name="array">A buffer to return to the pool that was previously obtained using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method.</param>
|
||||
<param name="clearArray">Indicates whether the contents of the buffer should be cleared before reuse. If <paramref name="clearArray">clearArray</paramref> is set to true, and if the pool will store the buffer to enable subsequent reuse, the <see cref="M:System.Buffers.ArrayPool`1.Return(`0[],System.Boolean)"></see> method will clear the <paramref name="array">array</paramref> of its contents so that a subsequent caller using the <see cref="M:System.Buffers.ArrayPool`1.Rent(System.Int32)"></see> method will not see the content of the previous caller. If <paramref name="clearArray">clearArray</paramref> is set to false or if the pool will release the buffer, the array&#39;s contents are left unchanged.</param>
|
||||
</member>
|
||||
<member name="P:System.Buffers.ArrayPool`1.Shared">
|
||||
<summary>Gets a shared <see cref="T:System.Buffers.ArrayPool`1"></see> instance.</summary>
|
||||
<returns>A shared <see cref="System.Buffers.ArrayPool`1"></see> instance.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.ComponentModel.Annotations.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.ComponentModel.Annotations.dll
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/System.IO.Ports.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.IO.Ports.dll
Normal file
Binary file not shown.
596
WindowsFormsApp6/bin/Debug/System.IO.Ports.xml
Normal file
596
WindowsFormsApp6/bin/Debug/System.IO.Ports.xml
Normal file
@@ -0,0 +1,596 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.IO.Ports</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.IO.Ports.Handshake">
|
||||
<summary>Specifies the control protocol used in establishing a serial port communication for a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Handshake.None">
|
||||
<summary>No control is used for the handshake.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Handshake.RequestToSend">
|
||||
<summary>Request-to-Send (RTS) hardware flow control is used. RTS signals that data is available for transmission. If the input buffer becomes full, the RTS line will be set to <see langword="false" />. The RTS line will be set to <see langword="true" /> when more room becomes available in the input buffer.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Handshake.RequestToSendXOnXOff">
|
||||
<summary>Both the Request-to-Send (RTS) hardware control and the XON/XOFF software controls are used.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Handshake.XOnXOff">
|
||||
<summary>The XON/XOFF software control protocol is used. The XOFF control is sent to stop the transmission of data. The XON control is sent to resume the transmission. These software controls are used instead of Request to Send (RTS) and Clear to Send (CTS) hardware controls.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.Parity">
|
||||
<summary>Specifies the parity bit for a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Parity.Even">
|
||||
<summary>Sets the parity bit so that the count of bits set is an even number.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Parity.Mark">
|
||||
<summary>Leaves the parity bit set to 1.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Parity.None">
|
||||
<summary>No parity check occurs.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Parity.Odd">
|
||||
<summary>Sets the parity bit so that the count of bits set is an odd number.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.Parity.Space">
|
||||
<summary>Leaves the parity bit set to 0.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialData">
|
||||
<summary>Specifies the type of character that was received on the serial port of the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialData.Chars">
|
||||
<summary>A character was received and placed in the input buffer.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialData.Eof">
|
||||
<summary>The end of file character was received and placed in the input buffer.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialDataReceivedEventArgs">
|
||||
<summary>Provides data for the <see cref="E:System.IO.Ports.SerialPort.DataReceived" /> event.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialDataReceivedEventArgs.EventType">
|
||||
<summary>Gets or sets the event type.</summary>
|
||||
<returns>One of the <see cref="T:System.IO.Ports.SerialData" /> values.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialDataReceivedEventHandler">
|
||||
<summary>Represents the method that will handle the <see cref="E:System.IO.Ports.SerialPort.DataReceived" /> event of a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<param name="sender">The sender of the event, which is the <see cref="T:System.IO.Ports.SerialPort" /> object.</param>
|
||||
<param name="e">A <see cref="T:System.IO.Ports.SerialDataReceivedEventArgs" /> object that contains the event data.</param>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialError">
|
||||
<summary>Specifies errors that occur on the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialError.Frame">
|
||||
<summary>The hardware detected a framing error.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialError.Overrun">
|
||||
<summary>A character-buffer overrun has occurred. The next character is lost.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialError.RXOver">
|
||||
<summary>An input buffer overflow has occurred. There is either no room in the input buffer, or a character was received after the end-of-file (EOF) character.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialError.RXParity">
|
||||
<summary>The hardware detected a parity error.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialError.TXFull">
|
||||
<summary>The application tried to transmit a character, but the output buffer was full.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialErrorReceivedEventArgs">
|
||||
<summary>Prepares data for the <see cref="E:System.IO.Ports.SerialPort.ErrorReceived" /> event.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialErrorReceivedEventArgs.EventType">
|
||||
<summary>Gets or sets the event type.</summary>
|
||||
<returns>One of the <see cref="T:System.IO.Ports.SerialError" /> values.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialErrorReceivedEventHandler">
|
||||
<summary>Represents the method that will handle the <see cref="E:System.IO.Ports.SerialPort.ErrorReceived" /> event of a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<param name="sender">The sender of the event, which is the <see cref="T:System.IO.Ports.SerialPort" /> object.</param>
|
||||
<param name="e">A <see cref="T:System.IO.Ports.SerialErrorReceivedEventArgs" /> object that contains the event data.</param>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialPinChange">
|
||||
<summary>Specifies the type of change that occurred on the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPinChange.Break">
|
||||
<summary>A break was detected on input.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPinChange.CDChanged">
|
||||
<summary>The Carrier Detect (CD) signal changed state. This signal is used to indicate whether a modem is connected to a working phone line and a data carrier signal is detected.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPinChange.CtsChanged">
|
||||
<summary>The Clear to Send (CTS) signal changed state. This signal is used to indicate whether data can be sent over the serial port.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPinChange.DsrChanged">
|
||||
<summary>The Data Set Ready (DSR) signal changed state. This signal is used to indicate whether the device on the serial port is ready to operate.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPinChange.Ring">
|
||||
<summary>A ring indicator was detected.</summary>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialPinChangedEventArgs">
|
||||
<summary>Provides data for the <see cref="E:System.IO.Ports.SerialPort.PinChanged" /> event.</summary>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPinChangedEventArgs.EventType">
|
||||
<summary>Gets or sets the event type.</summary>
|
||||
<returns>One of the <see cref="T:System.IO.Ports.SerialPinChange" /> values.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialPinChangedEventHandler">
|
||||
<summary>Represents the method that will handle the <see cref="E:System.IO.Ports.SerialPort.PinChanged" /> event of a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<param name="sender">The source of the event, which is the <see cref="T:System.IO.Ports.SerialPort" /> object.</param>
|
||||
<param name="e">A <see cref="T:System.IO.Ports.SerialPinChangedEventArgs" /> object that contains the event data.</param>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.SerialPort">
|
||||
<summary>Represents a serial port resource.</summary>
|
||||
</member>
|
||||
<member name="E:System.IO.Ports.SerialPort.DataReceived">
|
||||
<summary>Indicates that data has been received through a port represented by the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="E:System.IO.Ports.SerialPort.ErrorReceived">
|
||||
<summary>Indicates that an error has occurred with a port represented by a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="E:System.IO.Ports.SerialPort.PinChanged">
|
||||
<summary>Indicates that a non-data signal event has occurred on the port represented by the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.SerialPort.InfiniteTimeout">
|
||||
<summary>Indicates that no time-out should occur.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class.</summary>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.ComponentModel.IContainer)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified <see cref="T:System.ComponentModel.IContainer" /> object.</summary>
|
||||
<param name="container">An interface to a container.</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.String)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified port name.</summary>
|
||||
<param name="portName">The port to use (for example, COM1).</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified port name and baud rate.</summary>
|
||||
<param name="portName">The port to use (for example, COM1).</param>
|
||||
<param name="baudRate">The baud rate.</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified port name, baud rate, and parity bit.</summary>
|
||||
<param name="portName">The port to use (for example, COM1).</param>
|
||||
<param name="baudRate">The baud rate.</param>
|
||||
<param name="parity">One of the <see cref="P:System.IO.Ports.SerialPort.Parity" /> values.</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified port name, baud rate, parity bit, and data bits.</summary>
|
||||
<param name="portName">The port to use (for example, COM1).</param>
|
||||
<param name="baudRate">The baud rate.</param>
|
||||
<param name="parity">One of the <see cref="P:System.IO.Ports.SerialPort.Parity" /> values.</param>
|
||||
<param name="dataBits">The data bits value.</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.#ctor(System.String,System.Int32,System.IO.Ports.Parity,System.Int32,System.IO.Ports.StopBits)">
|
||||
<summary>Initializes a new instance of the <see cref="T:System.IO.Ports.SerialPort" /> class using the specified port name, baud rate, parity bit, data bits, and stop bit.</summary>
|
||||
<param name="portName">The port to use (for example, COM1).</param>
|
||||
<param name="baudRate">The baud rate.</param>
|
||||
<param name="parity">One of the <see cref="P:System.IO.Ports.SerialPort.Parity" /> values.</param>
|
||||
<param name="dataBits">The data bits value.</param>
|
||||
<param name="stopBits">One of the <see cref="P:System.IO.Ports.SerialPort.StopBits" /> values.</param>
|
||||
<exception cref="T:System.IO.IOException">The specified port could not be found or opened.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Close">
|
||||
<summary>Closes the port connection, sets the <see cref="P:System.IO.Ports.SerialPort.IsOpen" /> property to <see langword="false" />, and disposes of the internal <see cref="T:System.IO.Stream" /> object.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.DiscardInBuffer">
|
||||
<summary>Discards data from the serial driver's receive buffer.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.DiscardOutBuffer">
|
||||
<summary>Discards data from the serial driver's transmit buffer.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Dispose(System.Boolean)">
|
||||
<summary>Releases the unmanaged resources used by the <see cref="T:System.IO.Ports.SerialPort" /> and optionally releases the managed resources.</summary>
|
||||
<param name="disposing">
|
||||
<see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.GetPortNames">
|
||||
<summary>Gets an array of serial port names for the current computer.</summary>
|
||||
<exception cref="T:System.ComponentModel.Win32Exception">The serial port names could not be queried.</exception>
|
||||
<returns>An array of serial port names for the current computer.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Open">
|
||||
<summary>Opens a new serial port connection.</summary>
|
||||
<exception cref="T:System.UnauthorizedAccessException">Access is denied to the port.
|
||||
|
||||
-or-
|
||||
|
||||
The current process, or another process on the system, already has the specified COM port open either by a <see cref="T:System.IO.Ports.SerialPort" /> instance or in unmanaged code.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">One or more of the properties for this instance are invalid. For example, the <see cref="P:System.IO.Ports.SerialPort.Parity" />, <see cref="P:System.IO.Ports.SerialPort.DataBits" />, or <see cref="P:System.IO.Ports.SerialPort.Handshake" /> properties are not valid values; the <see cref="P:System.IO.Ports.SerialPort.BaudRate" /> is less than or equal to zero; the <see cref="P:System.IO.Ports.SerialPort.ReadTimeout" /> or <see cref="P:System.IO.Ports.SerialPort.WriteTimeout" /> property is less than zero and is not <see cref="F:System.IO.Ports.SerialPort.InfiniteTimeout" />.</exception>
|
||||
<exception cref="T:System.ArgumentException">The port name does not begin with "COM".
|
||||
|
||||
-or-
|
||||
|
||||
The file type of the port is not supported.</exception>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port on the current instance of the <see cref="T:System.IO.Ports.SerialPort" /> is already open.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Read(System.Byte[],System.Int32,System.Int32)">
|
||||
<summary>Reads a number of bytes from the <see cref="T:System.IO.Ports.SerialPort" /> input buffer and writes those bytes into a byte array at the specified offset.</summary>
|
||||
<param name="buffer">The byte array to write the input to.</param>
|
||||
<param name="offset">The offset in <paramref name="buffer" /> at which to write the bytes.</param>
|
||||
<param name="count">The maximum number of bytes to read. Fewer bytes are read if <paramref name="count" /> is greater than the number of bytes in the input buffer.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The buffer passed is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> or <paramref name="count" /> parameters are outside a valid region of the <paramref name="buffer" /> being passed. Either <paramref name="offset" /> or <paramref name="count" /> is less than zero.</exception>
|
||||
<exception cref="T:System.ArgumentException">
|
||||
<paramref name="offset" /> plus <paramref name="count" /> is greater than the length of the <paramref name="buffer" />.</exception>
|
||||
<exception cref="T:System.TimeoutException">No bytes were available to read.</exception>
|
||||
<returns>The number of bytes read.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Read(System.Char[],System.Int32,System.Int32)">
|
||||
<summary>Reads a number of characters from the <see cref="T:System.IO.Ports.SerialPort" /> input buffer and writes them into an array of characters at a given offset.</summary>
|
||||
<param name="buffer">The character array to write the input to.</param>
|
||||
<param name="offset">The offset in <paramref name="buffer" /> at which to write the characters.</param>
|
||||
<param name="count">The maximum number of characters to read. Fewer characters are read if <paramref name="count" /> is greater than the number of characters in the input buffer.</param>
|
||||
<exception cref="T:System.ArgumentException">
|
||||
<paramref name="offset" /> plus <paramref name="count" /> is greater than the length of the buffer.
|
||||
|
||||
-or-
|
||||
|
||||
<paramref name="count" /> is 1 and there is a surrogate character in the buffer.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> passed is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> or <paramref name="count" /> parameters are outside a valid region of the <paramref name="buffer" /> being passed. Either <paramref name="offset" /> or <paramref name="count" /> is less than zero.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.TimeoutException">No characters were available to read.</exception>
|
||||
<returns>The number of characters read.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.ReadByte">
|
||||
<summary>Synchronously reads one byte from the <see cref="T:System.IO.Ports.SerialPort" /> input buffer.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ServiceProcess.TimeoutException">The operation did not complete before the time-out period ended.
|
||||
|
||||
-or-
|
||||
|
||||
No byte was read.</exception>
|
||||
<returns>The byte, cast to an <see cref="T:System.Int32" />, or -1 if the end of the stream has been read.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.ReadChar">
|
||||
<summary>Synchronously reads one character from the <see cref="T:System.IO.Ports.SerialPort" /> input buffer.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ServiceProcess.TimeoutException">The operation did not complete before the time-out period ended.
|
||||
|
||||
-or-
|
||||
|
||||
No character was available in the allotted time-out period.</exception>
|
||||
<returns>The character that was read.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.ReadExisting">
|
||||
<summary>Reads all immediately available bytes, based on the encoding, in both the stream and the input buffer of the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<returns>The contents of the stream and the input buffer of the <see cref="T:System.IO.Ports.SerialPort" /> object.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.ReadLine">
|
||||
<summary>Reads up to the <see cref="P:System.IO.Ports.SerialPort.NewLine" /> value in the input buffer.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.TimeoutException">The operation did not complete before the time-out period ended.
|
||||
|
||||
-or-
|
||||
|
||||
No bytes were read.</exception>
|
||||
<returns>The contents of the input buffer up to the first occurrence of a <see cref="P:System.IO.Ports.SerialPort.NewLine" /> value.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.ReadTo(System.String)">
|
||||
<summary>Reads a string up to the specified <paramref name="value" /> in the input buffer.</summary>
|
||||
<param name="value">A value that indicates where the read operation stops.</param>
|
||||
<exception cref="T:System.ArgumentException">The length of the <paramref name="value" /> parameter is 0.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="value" /> parameter is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.TimeoutException">The operation did not complete before the time-out period ended.</exception>
|
||||
<returns>The contents of the input buffer up to the specified <paramref name="value" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Write(System.Byte[],System.Int32,System.Int32)">
|
||||
<summary>Writes a specified number of bytes to the serial port using data from a buffer.</summary>
|
||||
<param name="buffer">The byte array that contains the data to write to the port.</param>
|
||||
<param name="offset">The zero-based byte offset in the <paramref name="buffer" /> parameter at which to begin copying bytes to the port.</param>
|
||||
<param name="count">The number of bytes to write.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> passed is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> or <paramref name="count" /> parameters are outside a valid region of the <paramref name="buffer" /> being passed. Either <paramref name="offset" /> or <paramref name="count" /> is less than zero.</exception>
|
||||
<exception cref="T:System.ArgumentException">
|
||||
<paramref name="offset" /> plus <paramref name="count" /> is greater than the length of the <paramref name="buffer" />.</exception>
|
||||
<exception cref="T:System.ServiceProcess.TimeoutException">The operation did not complete before the time-out period ended.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Write(System.Char[],System.Int32,System.Int32)">
|
||||
<summary>Writes a specified number of characters to the serial port using data from a buffer.</summary>
|
||||
<param name="buffer">The character array that contains the data to write to the port.</param>
|
||||
<param name="offset">The zero-based byte offset in the <paramref name="buffer" /> parameter at which to begin copying bytes to the port.</param>
|
||||
<param name="count">The number of characters to write.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> passed is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> or <paramref name="count" /> parameters are outside a valid region of the <paramref name="buffer" /> being passed. Either <paramref name="offset" /> or <paramref name="count" /> is less than zero.</exception>
|
||||
<exception cref="T:System.ArgumentException">
|
||||
<paramref name="offset" /> plus <paramref name="count" /> is greater than the length of the <paramref name="buffer" />.</exception>
|
||||
<exception cref="T:System.ServiceProcess.TimeoutException">The operation did not complete before the time-out period ended.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.Write(System.String)">
|
||||
<summary>Writes the specified string to the serial port.</summary>
|
||||
<param name="text">The string for output.</param>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">
|
||||
<paramref name="text" /> is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ServiceProcess.TimeoutException">The operation did not complete before the time-out period ended.</exception>
|
||||
</member>
|
||||
<member name="M:System.IO.Ports.SerialPort.WriteLine(System.String)">
|
||||
<summary>Writes the specified string and the <see cref="P:System.IO.Ports.SerialPort.NewLine" /> value to the output buffer.</summary>
|
||||
<param name="text">The string to write to the output buffer.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="text" /> parameter is <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is not open.</exception>
|
||||
<exception cref="T:System.TimeoutException">The <see cref="M:System.IO.Ports.SerialPort.WriteLine(System.String)" /> method could not write to the stream.</exception>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.BaseStream">
|
||||
<summary>Gets the underlying <see cref="T:System.IO.Stream" /> object for a <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<exception cref="T:System.NotSupportedException">The stream is in a .NET Compact Framework application and one of the following methods was called:
|
||||
|
||||
<see cref="M:System.IO.Stream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /><see cref="M:System.IO.Stream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /><see cref="M:System.IO.Stream.EndRead(System.IAsyncResult)" /><see cref="M:System.IO.Stream.EndWrite(System.IAsyncResult)" />
|
||||
|
||||
The .NET Compact Framework does not support the asynchronous model with base streams.</exception>
|
||||
<returns>A <see cref="T:System.IO.Stream" /> object.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.BaudRate">
|
||||
<summary>Gets or sets the serial baud rate.</summary>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The baud rate specified is less than or equal to zero, or is greater than the maximum allowable baud rate for the device.</exception>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<returns>The baud rate.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.BreakState">
|
||||
<summary>Gets or sets the break signal state.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the port is in a break state; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.BytesToRead">
|
||||
<summary>Gets the number of bytes of data in the receive buffer.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The port is not open.</exception>
|
||||
<returns>The number of bytes of data in the receive buffer.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.BytesToWrite">
|
||||
<summary>Gets the number of bytes of data in the send buffer.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>The number of bytes of data in the send buffer.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.CDHolding">
|
||||
<summary>Gets the state of the Carrier Detect line for the port.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the carrier is detected; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.CtsHolding">
|
||||
<summary>Gets the state of the Clear-to-Send line.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if the Clear-to-Send line is detected; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.DataBits">
|
||||
<summary>Gets or sets the standard length of data bits per byte.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The data bits value is less than 5 or more than 8.</exception>
|
||||
<returns>The data bits length.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.DiscardNull">
|
||||
<summary>Gets or sets a value indicating whether null bytes are ignored when transmitted between the port and the receive buffer.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if null bytes are ignored; otherwise <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.DsrHolding">
|
||||
<summary>Gets the state of the Data Set Ready (DSR) signal.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The stream is closed. This can occur because the <see cref="M:System.IO.Ports.SerialPort.Open" /> method has not been called or the <see cref="M:System.IO.Ports.SerialPort.Close" /> method has been called.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> if a Data Set Ready signal has been sent to the port; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.DtrEnable">
|
||||
<summary>Gets or sets a value that enables the Data Terminal Ready (DTR) signal during serial communication.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> to enable Data Terminal Ready (DTR); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.Encoding">
|
||||
<summary>Gets or sets the byte encoding for pre- and post-transmission conversion of text.</summary>
|
||||
<exception cref="T:System.ArgumentNullException">The <see cref="P:System.IO.Ports.SerialPort.Encoding" /> property was set to <see langword="null" />.</exception>
|
||||
<exception cref="T:System.ArgumentException">The <see cref="P:System.IO.Ports.SerialPort.Encoding" /> property was set to an encoding that is not <see cref="T:System.Text.ASCIIEncoding" />, <see cref="T:System.Text.UTF8Encoding" />, <see cref="T:System.Text.UTF32Encoding" />, <see cref="T:System.Text.UnicodeEncoding" />, one of the Windows single byte encodings, or one of the Windows double byte encodings.</exception>
|
||||
<returns>An <see cref="T:System.Text.Encoding" /> object. The default is <see cref="T:System.Text.ASCIIEncoding" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.Handshake">
|
||||
<summary>Gets or sets the handshaking protocol for serial port transmission of data using a value from <see cref="T:System.IO.Ports.Handshake" />.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The value passed is not a valid value in the <see cref="T:System.IO.Ports.Handshake" /> enumeration.</exception>
|
||||
<returns>One of the <see cref="T:System.IO.Ports.Handshake" /> values. The default is <see langword="None" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.IsOpen">
|
||||
<summary>Gets a value indicating the open or closed status of the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
<returns>
|
||||
<see langword="true" /> if the serial port is open; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.NewLine">
|
||||
<summary>Gets or sets the value used to interpret the end of a call to the <see cref="M:System.IO.Ports.SerialPort.ReadLine" /> and <see cref="M:System.IO.Ports.SerialPort.WriteLine(System.String)" /> methods.</summary>
|
||||
<exception cref="T:System.ArgumentException">The property value is empty.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The property value is <see langword="null" />.</exception>
|
||||
<returns>A value that represents the end of a line. The default is a line feed ("\n" in C# or <see cref="F:Microsoft.VisualBasic.Constants.vbLf" /> in Visual Basic).</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.Parity">
|
||||
<summary>Gets or sets the parity-checking protocol.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.Parity" /> value passed is not a valid value in the <see cref="T:System.IO.Ports.Parity" /> enumeration.</exception>
|
||||
<returns>One of the enumeration values that represents the parity-checking protocol. The default is <see cref="F:System.IO.Ports.Parity.None" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.ParityReplace">
|
||||
<summary>Gets or sets the byte that replaces invalid bytes in a data stream when a parity error occurs.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<returns>A byte that replaces invalid bytes.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.PortName">
|
||||
<summary>Gets or sets the port for communications, including but not limited to all available COM ports.</summary>
|
||||
<exception cref="T:System.ArgumentException">The <see cref="P:System.IO.Ports.SerialPort.PortName" /> property was set to a value with a length of zero.
|
||||
|
||||
-or-
|
||||
|
||||
The <see cref="P:System.IO.Ports.SerialPort.PortName" /> property was set to a value that starts with "\\".
|
||||
|
||||
-or-
|
||||
|
||||
The port name was not valid.</exception>
|
||||
<exception cref="T:System.ArgumentNullException">The <see cref="P:System.IO.Ports.SerialPort.PortName" /> property was set to <see langword="null" />.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The specified port is open.</exception>
|
||||
<returns>The communications port. The default is COM1.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.ReadBufferSize">
|
||||
<summary>Gets or sets the size of the <see cref="T:System.IO.Ports.SerialPort" /> input buffer.</summary>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.ReadBufferSize" /> value set is less than or equal to zero.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.IO.Ports.SerialPort.ReadBufferSize" /> property was set while the stream was open.</exception>
|
||||
<exception cref="T:System.IO.IOException">The <see cref="P:System.IO.Ports.SerialPort.ReadBufferSize" /> property was set to an odd integer value.</exception>
|
||||
<returns>The buffer size, in bytes. The default value is 4096; the maximum value is that of a positive int, or 2147483647.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.ReadTimeout">
|
||||
<summary>Gets or sets the number of milliseconds before a time-out occurs when a read operation does not finish.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The read time-out value is less than zero and not equal to <see cref="F:System.IO.Ports.SerialPort.InfiniteTimeout" />.</exception>
|
||||
<returns>The number of milliseconds before a time-out occurs when a read operation does not finish.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.ReceivedBytesThreshold">
|
||||
<summary>Gets or sets the number of bytes in the internal input buffer before a <see cref="E:System.IO.Ports.SerialPort.DataReceived" /> event occurs.</summary>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.ReceivedBytesThreshold" /> value is less than or equal to zero.</exception>
|
||||
<returns>The number of bytes in the internal input buffer before a <see cref="E:System.IO.Ports.SerialPort.DataReceived" /> event is fired. The default is 1.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.RtsEnable">
|
||||
<summary>Gets or sets a value indicating whether the Request to Send (RTS) signal is enabled during serial communication.</summary>
|
||||
<exception cref="T:System.InvalidOperationException">The value of the <see cref="P:System.IO.Ports.SerialPort.RtsEnable" /> property was set or retrieved while the <see cref="P:System.IO.Ports.SerialPort.Handshake" /> property is set to the <see cref="F:System.IO.Ports.Handshake.RequestToSend" /> value or the <see cref="F:System.IO.Ports.Handshake.RequestToSendXOnXOff" /> value.</exception>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<returns>
|
||||
<see langword="true" /> to enable Request to Transmit (RTS); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.StopBits">
|
||||
<summary>Gets or sets the standard number of stopbits per byte.</summary>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.StopBits" /> value is <see cref="F:System.IO.Ports.StopBits.None" />.</exception>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<returns>One of the <see cref="T:System.IO.Ports.StopBits" /> values.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.WriteBufferSize">
|
||||
<summary>Gets or sets the size of the serial port output buffer.</summary>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.WriteBufferSize" /> value is less than or equal to zero.</exception>
|
||||
<exception cref="T:System.InvalidOperationException">The <see cref="P:System.IO.Ports.SerialPort.WriteBufferSize" /> property was set while the stream was open.</exception>
|
||||
<exception cref="T:System.IO.IOException">The <see cref="P:System.IO.Ports.SerialPort.WriteBufferSize" /> property was set to an odd integer value.</exception>
|
||||
<returns>The size of the output buffer. The default is 2048.</returns>
|
||||
</member>
|
||||
<member name="P:System.IO.Ports.SerialPort.WriteTimeout">
|
||||
<summary>Gets or sets the number of milliseconds before a time-out occurs when a write operation does not finish.</summary>
|
||||
<exception cref="T:System.IO.IOException">The port is in an invalid state.
|
||||
|
||||
-or-
|
||||
|
||||
An attempt to set the state of the underlying port failed. For example, the parameters passed from this <see cref="T:System.IO.Ports.SerialPort" /> object were invalid.</exception>
|
||||
<exception cref="T:System.ArgumentOutOfRangeException">The <see cref="P:System.IO.Ports.SerialPort.WriteTimeout" /> value is less than zero and not equal to <see cref="F:System.IO.Ports.SerialPort.InfiniteTimeout" />.</exception>
|
||||
<returns>The number of milliseconds before a time-out occurs. The default is <see cref="F:System.IO.Ports.SerialPort.InfiniteTimeout" />.</returns>
|
||||
</member>
|
||||
<member name="T:System.IO.Ports.StopBits">
|
||||
<summary>Specifies the number of stop bits used on the <see cref="T:System.IO.Ports.SerialPort" /> object.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.StopBits.None">
|
||||
<summary>No stop bits are used. This value is not supported by the <see cref="P:System.IO.Ports.SerialPort.StopBits" /> property.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.StopBits.One">
|
||||
<summary>One stop bit is used.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.StopBits.OnePointFive">
|
||||
<summary>1.5 stop bits are used.</summary>
|
||||
</member>
|
||||
<member name="F:System.IO.Ports.StopBits.Two">
|
||||
<summary>Two stop bits are used.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.Memory.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Memory.dll
Normal file
Binary file not shown.
355
WindowsFormsApp6/bin/Debug/System.Memory.xml
Normal file
355
WindowsFormsApp6/bin/Debug/System.Memory.xml
Normal file
@@ -0,0 +1,355 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><doc>
|
||||
<assembly>
|
||||
<name>System.Memory</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Span`1">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Span`1.#ctor(`0[])">
|
||||
<param name="array"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.#ctor(System.Void*,System.Int32)">
|
||||
<param name="pointer"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.#ctor(`0[],System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.#ctor(`0[],System.Int32,System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Clear">
|
||||
|
||||
</member>
|
||||
<member name="M:System.Span`1.CopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.DangerousCreate(System.Object,`0@,System.Int32)">
|
||||
<param name="obj"></param>
|
||||
<param name="objectData"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.DangerousGetPinnableReference">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Empty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Equals(System.Object)">
|
||||
<param name="obj"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Fill(`0)">
|
||||
<param name="value"></param>
|
||||
</member>
|
||||
<member name="M:System.Span`1.GetHashCode">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.IsEmpty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Item(System.Int32)">
|
||||
<param name="index"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Span`1.Length">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Equality(System.Span{`0},System.Span{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(System.ArraySegment{T})~System.Span{T}">
|
||||
<param name="arraySegment"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(System.Span{T})~System.ReadOnlySpan{T}">
|
||||
<param name="span"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Implicit(T[])~System.Span{T}">
|
||||
<param name="array"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.op_Inequality(System.Span{`0},System.Span{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Slice(System.Int32)">
|
||||
<param name="start"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.Slice(System.Int32,System.Int32)">
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.ToArray">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Span`1.TryCopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.SpanExtensions">
|
||||
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsBytes``1(System.ReadOnlySpan{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsBytes``1(System.Span{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan(System.String)">
|
||||
<param name="text"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan``1(System.ArraySegment{``0})">
|
||||
<param name="arraySegment"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.AsSpan``1(``0[])">
|
||||
<param name="array"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.CopyTo``1(``0[],System.Span{``0})">
|
||||
<param name="array"></param>
|
||||
<param name="destination"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.Span{System.Byte},System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.ReadOnlySpan{``0},``0)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOf``1(System.Span{``0},``0)">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<param name="value2"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<param name="value2"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="values"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="values"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.IndexOfAny(System.ReadOnlySpan{System.Byte},System.Byte,System.Byte)">
|
||||
<param name="span"></param>
|
||||
<param name="value0"></param>
|
||||
<param name="value1"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.NonPortableCast``2(System.ReadOnlySpan{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="TFrom"></typeparam>
|
||||
<typeparam name="TTo"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.NonPortableCast``2(System.Span{``0})">
|
||||
<param name="source"></param>
|
||||
<typeparam name="TFrom"></typeparam>
|
||||
<typeparam name="TTo"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.SequenceEqual``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="first"></param>
|
||||
<param name="second"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith(System.ReadOnlySpan{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith(System.Span{System.Byte},System.ReadOnlySpan{System.Byte})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.SpanExtensions.StartsWith``1(System.Span{``0},System.ReadOnlySpan{``0})">
|
||||
<param name="span"></param>
|
||||
<param name="value"></param>
|
||||
<typeparam name="T"></typeparam>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.ReadOnlySpan`1">
|
||||
<typeparam name="T"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[])">
|
||||
<param name="array"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(System.Void*,System.Int32)">
|
||||
<param name="pointer"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.#ctor(`0[],System.Int32,System.Int32)">
|
||||
<param name="array"></param>
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.CopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.DangerousCreate(System.Object,`0@,System.Int32)">
|
||||
<param name="obj"></param>
|
||||
<param name="objectData"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.DangerousGetPinnableReference">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Empty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Equals(System.Object)">
|
||||
<param name="obj"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.GetHashCode">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.IsEmpty">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Item(System.Int32)">
|
||||
<param name="index"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.ReadOnlySpan`1.Length">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Equality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Implicit(System.ArraySegment{T})~System.ReadOnlySpan{T}">
|
||||
<param name="arraySegment"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Implicit(T[])~System.ReadOnlySpan{T}">
|
||||
<param name="array"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.op_Inequality(System.ReadOnlySpan{`0},System.ReadOnlySpan{`0})">
|
||||
<param name="left"></param>
|
||||
<param name="right"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32)">
|
||||
<param name="start"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.Slice(System.Int32,System.Int32)">
|
||||
<param name="start"></param>
|
||||
<param name="length"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.ToArray">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.ReadOnlySpan`1.TryCopyTo(System.Span{`0})">
|
||||
<param name="destination"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.Numerics.Vectors.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Numerics.Vectors.dll
Normal file
Binary file not shown.
2621
WindowsFormsApp6/bin/Debug/System.Numerics.Vectors.xml
Normal file
2621
WindowsFormsApp6/bin/Debug/System.Numerics.Vectors.xml
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,291 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Runtime.CompilerServices.Unsafe</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Runtime.CompilerServices.Unsafe">
|
||||
<summary>Contains generic, low-level functionality for manipulating pointers.</summary>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.Int32)">
|
||||
<summary>Adds an element offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.IntPtr)">
|
||||
<summary>Adds an element offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(``0@,System.UIntPtr)">
|
||||
<summary>Adds an element offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Add``1(System.Void*,System.Int32)">
|
||||
<summary>Adds an element offset to the given void pointer.</summary>
|
||||
<param name="source">The void pointer to add the offset to.</param>
|
||||
<param name="elementOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of void pointer.</typeparam>
|
||||
<returns>A new void pointer that reflects the addition of offset to the specified pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Adds a byte offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="byteOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AddByteOffset``1(``0@,System.UIntPtr)">
|
||||
<summary>Adds a byte offset to the given reference.</summary>
|
||||
<param name="source">The reference to add the offset to.</param>
|
||||
<param name="byteOffset">The offset to add.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the addition of byte offset to pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AreSame``1(``0@,``0@)">
|
||||
<summary>Determines whether the specified references point to the same location.</summary>
|
||||
<param name="left">The first reference to compare.</param>
|
||||
<param name="right">The second reference to compare.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> and <paramref name="right" /> point to the same location; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)">
|
||||
<summary>Casts the given object to the specified type.</summary>
|
||||
<param name="o">The object to cast.</param>
|
||||
<typeparam name="T">The type which the object will be cast to.</typeparam>
|
||||
<returns>The original object, casted to the given type.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.As``2(``0@)">
|
||||
<summary>Reinterprets the given reference as a reference to a value of type <typeparamref name="TTo" />.</summary>
|
||||
<param name="source">The reference to reinterpret.</param>
|
||||
<typeparam name="TFrom">The type of reference to reinterpret.</typeparam>
|
||||
<typeparam name="TTo">The desired type of the reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="TTo" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)">
|
||||
<summary>Returns a pointer to the given by-ref parameter.</summary>
|
||||
<param name="value">The object whose pointer is obtained.</param>
|
||||
<typeparam name="T">The type of object.</typeparam>
|
||||
<returns>A pointer to the given value.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(``0@)">
|
||||
<summary>Reinterprets the given read-only reference as a reference.</summary>
|
||||
<param name="source">The read-only reference to reinterpret.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.AsRef``1(System.Void*)">
|
||||
<summary>Reinterprets the given location as a reference to a value of type <typeparamref name="T" />.</summary>
|
||||
<param name="source">The location of the value to reference.</param>
|
||||
<typeparam name="T">The type of the interpreted location.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ByteOffset``1(``0@,``0@)">
|
||||
<summary>Determines the byte offset from origin to target from the given references.</summary>
|
||||
<param name="origin">The reference to origin.</param>
|
||||
<param name="target">The reference to target.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>Byte offset from origin to target i.e. <paramref name="target" /> - <paramref name="origin" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)">
|
||||
<summary>Copies a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A pointer to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)">
|
||||
<summary>Copies a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to copy to.</param>
|
||||
<param name="source">A reference to the value to copy.</param>
|
||||
<typeparam name="T">The type of value to copy.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlock(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Byte@,System.Byte@,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.CopyBlockUnaligned(System.Void*,System.Void*,System.UInt32)">
|
||||
<summary>Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The destination address to copy to.</param>
|
||||
<param name="source">The source address to copy from.</param>
|
||||
<param name="byteCount">The number of bytes to copy.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlock(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Byte@,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.InitBlockUnaligned(System.Void*,System.Byte,System.UInt32)">
|
||||
<summary>Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address.</summary>
|
||||
<param name="startAddress">The address of the start of the memory block to initialize.</param>
|
||||
<param name="value">The value to initialize the block to.</param>
|
||||
<param name="byteCount">The number of bytes to initialize.</param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsAddressGreaterThan``1(``0@,``0@)">
|
||||
<summary>Returns a value that indicates whether a specified reference is greater than another specified reference.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> is greater than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsAddressLessThan``1(``0@,``0@)">
|
||||
<summary>Returns a value that indicates whether a specified reference is less than another specified reference.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="left" /> is less than <paramref name="right" />; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.IsNullRef``1(``0@)">
|
||||
<summary>Determines if a given reference to a value of type <typeparamref name="T" /> is a null reference.</summary>
|
||||
<param name="source">The reference to check.</param>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>
|
||||
<see langword="true" /> if <paramref name="source" /> is a null reference; otherwise, <see langword="false" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.NullRef``1">
|
||||
<summary>Returns a reference to a value of type <typeparamref name="T" /> that is a null reference.</summary>
|
||||
<typeparam name="T">The type of the reference.</typeparam>
|
||||
<returns>A reference to a value of type <typeparamref name="T" /> that is a null reference.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Read``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Byte@)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.ReadUnaligned``1(System.Void*)">
|
||||
<summary>Reads a value of type <typeparamref name="T" /> from the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="source">The location to read from.</param>
|
||||
<typeparam name="T">The type to read.</typeparam>
|
||||
<returns>An object of type <typeparamref name="T" /> read from the given location.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SizeOf``1">
|
||||
<summary>Returns the size of an object of the given type parameter.</summary>
|
||||
<typeparam name="T">The type of object whose size is retrieved.</typeparam>
|
||||
<returns>The size of an object of type <typeparamref name="T" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SkipInit``1(``0@)">
|
||||
<summary>Bypasses definite assignment rules for a given value.</summary>
|
||||
<param name="value">The uninitialized object.</param>
|
||||
<typeparam name="T">The type of the uninitialized object.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.Int32)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(``0@,System.UIntPtr)">
|
||||
<summary>Subtracts an element offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Subtract``1(System.Void*,System.Int32)">
|
||||
<summary>Subtracts an element offset from the given void pointer.</summary>
|
||||
<param name="source">The void pointer to subtract the offset from.</param>
|
||||
<param name="elementOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of the void pointer.</typeparam>
|
||||
<returns>A new void pointer that reflects the subtraction of offset from the specified pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.IntPtr)">
|
||||
<summary>Subtracts a byte offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="byteOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subtraction of byte offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.SubtractByteOffset``1(``0@,System.UIntPtr)">
|
||||
<summary>Subtracts a byte offset from the given reference.</summary>
|
||||
<param name="source">The reference to subtract the offset from.</param>
|
||||
<param name="byteOffset">The offset to subtract.</param>
|
||||
<typeparam name="T">The type of reference.</typeparam>
|
||||
<returns>A new reference that reflects the subraction of byte offset from pointer.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Unbox``1(System.Object)">
|
||||
<summary>Returns a <see langword="mutable ref" /> to a boxed value.</summary>
|
||||
<param name="box">The value to unbox.</param>
|
||||
<typeparam name="T">The type to be unboxed.</typeparam>
|
||||
<exception cref="T:System.NullReferenceException">
|
||||
<paramref name="box" /> is <see langword="null" />, and <typeparamref name="T" /> is a non-nullable value type.</exception>
|
||||
<exception cref="T:System.InvalidCastException">
|
||||
<paramref name="box" /> is not a boxed value type.
|
||||
|
||||
-or-
|
||||
|
||||
<paramref name="box" /> is not a boxed <typeparamref name="T" />.</exception>
|
||||
<exception cref="T:System.TypeLoadException">
|
||||
<typeparamref name="T" /> cannot be found.</exception>
|
||||
<returns>A <see langword="mutable ref" /> to the boxed value <paramref name="box" />.</returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Byte@,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.Unsafe.WriteUnaligned``1(System.Void*,``0)">
|
||||
<summary>Writes a value of type <typeparamref name="T" /> to the given location without assuming architecture dependent alignment of the addresses.</summary>
|
||||
<param name="destination">The location to write to.</param>
|
||||
<param name="value">The value to write.</param>
|
||||
<typeparam name="T">The type of value to write.</typeparam>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.Security.Cryptography.Xml.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Security.Cryptography.Xml.dll
Normal file
Binary file not shown.
2191
WindowsFormsApp6/bin/Debug/System.Security.Cryptography.Xml.xml
Normal file
2191
WindowsFormsApp6/bin/Debug/System.Security.Cryptography.Xml.xml
Normal file
File diff suppressed because it is too large
Load Diff
BIN
WindowsFormsApp6/bin/Debug/System.Text.Encoding.CodePages.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Text.Encoding.CodePages.dll
Normal file
Binary file not shown.
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.Text.Encoding.CodePages</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Text.CodePagesEncodingProvider">
|
||||
<summary>Provides access to an encoding provider for code pages that otherwise are available only in the desktop .NET Framework.</summary>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.Int32)">
|
||||
<summary>Returns the encoding associated with the specified code page identifier.</summary>
|
||||
<param name="codepage">The code page identifier of the preferred encoding which the encoding provider may support.</param>
|
||||
<returns>The encoding associated with the specified code page identifier, or <see langword="null" /> if the provider does not support the requested codepage encoding.</returns>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncoding(System.String)">
|
||||
<summary>Returns the encoding associated with the specified code page name.</summary>
|
||||
<param name="name">The code page name of the preferred encoding which the encoding provider may support.</param>
|
||||
<returns>The encoding associated with the specified code page, or <see langword="null" /> if the provider does not support the requested encoding.</returns>
|
||||
</member>
|
||||
<member name="M:System.Text.CodePagesEncodingProvider.GetEncodings">
|
||||
<summary>Returns an array that contains all the encodings that are supported by the <see cref="T:System.Text.CodePagesEncodingProvider" />.</summary>
|
||||
<returns>An array that contains all the supported encodings.</returns>
|
||||
</member>
|
||||
<member name="P:System.Text.CodePagesEncodingProvider.Instance">
|
||||
<summary>Gets an encoding provider for code pages supported in the desktop .NET Framework but not in the current .NET Framework platform.</summary>
|
||||
<returns>An encoding provider that allows access to encodings not supported on the current .NET Framework platform.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.Threading.Tasks.Extensions.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.Threading.Tasks.Extensions.dll
Normal file
Binary file not shown.
166
WindowsFormsApp6/bin/Debug/System.Threading.Tasks.Extensions.xml
Normal file
166
WindowsFormsApp6/bin/Debug/System.Threading.Tasks.Extensions.xml
Normal file
@@ -0,0 +1,166 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><doc>
|
||||
<assembly>
|
||||
<name>System.Threading.Tasks.Extensions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:System.Runtime.CompilerServices.ValueTaskAwaiter`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.GetResult">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ValueTaskAwaiter`1.IsCompleted">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.OnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ValueTaskAwaiter`1.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Threading.Tasks.ValueTask`1">
|
||||
<summary>Provides a value type that wraps a <see cref="Task{TResult}"></see> and a <typeparamref name="TResult">TResult</typeparamref>, only one of which is used.</summary>
|
||||
<typeparam name="TResult">The result.</typeparam>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(System.Threading.Tasks.Task{`0})">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied task that represents the operation.</summary>
|
||||
<param name="task">The task.</param>
|
||||
<exception cref="T:System.ArgumentNullException">The <paramref name="task">task</paramref> argument is null.</exception>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.#ctor(`0)">
|
||||
<summary>Initializes a new instance of the <see cref="ValueTask{TResult}"></see> class using the supplied result of a successful operation.</summary>
|
||||
<param name="result">The result.</param>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.AsTask">
|
||||
<summary>Retrieves a <see cref="Task{TResult}"></see> object that represents this <see cref="ValueTask{TResult}"></see>.</summary>
|
||||
<returns>The <see cref="Task{TResult}"></see> object that is wrapped in this <see cref="ValueTask{TResult}"></see> if one exists, or a new <see cref="Task{TResult}"></see> object that represents the result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ConfigureAwait(System.Boolean)">
|
||||
<summary>Configures an awaiter for this value.</summary>
|
||||
<param name="continueOnCapturedContext">true to attempt to marshal the continuation back to the captured context; otherwise, false.</param>
|
||||
<returns>The configured awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.CreateAsyncMethodBuilder">
|
||||
<summary>Creates a method builder for use with an async method.</summary>
|
||||
<returns>The created builder.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Object)">
|
||||
<summary>Determines whether the specified object is equal to the current object.</summary>
|
||||
<param name="obj">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.Equals(System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether the specified <see cref="ValueTask{TResult}"></see> object is equal to the current <see cref="ValueTask{TResult}"></see> object.</summary>
|
||||
<param name="other">The object to compare with the current object.</param>
|
||||
<returns>true if the specified object is equal to the current object; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetAwaiter">
|
||||
<summary>Creates an awaiter for this value.</summary>
|
||||
<returns>The awaiter.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.GetHashCode">
|
||||
<summary>Returns the hash code for this instance.</summary>
|
||||
<returns>The hash code for the current object.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCanceled">
|
||||
<summary>Gets a value that indicates whether this object represents a canceled operation.</summary>
|
||||
<returns>true if this object represents a canceled operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompleted">
|
||||
<summary>Gets a value that indicates whether this object represents a completed operation.</summary>
|
||||
<returns>true if this object represents a completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsCompletedSuccessfully">
|
||||
<summary>Gets a value that indicates whether this object represents a successfully completed operation.</summary>
|
||||
<returns>true if this object represents a successfully completed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.IsFaulted">
|
||||
<summary>Gets a value that indicates whether this object represents a failed operation.</summary>
|
||||
<returns>true if this object represents a failed operation; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Equality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Compares two values for equality.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The second value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.op_Inequality(System.Threading.Tasks.ValueTask{`0},System.Threading.Tasks.ValueTask{`0})">
|
||||
<summary>Determines whether two <see cref="ValueTask{TResult}"></see> values are unequal.</summary>
|
||||
<param name="left">The first value to compare.</param>
|
||||
<param name="right">The seconed value to compare.</param>
|
||||
<returns>true if the two <see cref="ValueTask{TResult}"></see> values are not equal; otherwise, false.</returns>
|
||||
</member>
|
||||
<member name="P:System.Threading.Tasks.ValueTask`1.Result">
|
||||
<summary>Gets the result.</summary>
|
||||
<returns>The result.</returns>
|
||||
</member>
|
||||
<member name="M:System.Threading.Tasks.ValueTask`1.ToString">
|
||||
<summary>Returns a string that represents the current object.</summary>
|
||||
<returns>A string that represents the current object.</returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute">
|
||||
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.#ctor(System.Type)">
|
||||
<param name="builderType"></param>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncMethodBuilderAttribute.BuilderType">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.AwaitUnsafeOnCompleted``2(``0@,``1@)">
|
||||
<param name="awaiter"></param>
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TAwaiter"></typeparam>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Create">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetException(System.Exception)">
|
||||
<param name="exception"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetResult(`0)">
|
||||
<param name="result"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)">
|
||||
<param name="stateMachine"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Start``1(``0@)">
|
||||
<param name="stateMachine"></param>
|
||||
<typeparam name="TStateMachine"></typeparam>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder`1.Task">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.GetResult">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="P:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.IsCompleted">
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.OnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.ConfiguredValueTaskAwaiter.UnsafeOnCompleted(System.Action)">
|
||||
<param name="continuation"></param>
|
||||
</member>
|
||||
<member name="T:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1">
|
||||
<typeparam name="TResult"></typeparam>
|
||||
</member>
|
||||
<member name="M:System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1.GetAwaiter">
|
||||
<returns></returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/System.ValueTuple.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/System.ValueTuple.dll
Normal file
Binary file not shown.
8
WindowsFormsApp6/bin/Debug/System.ValueTuple.xml
Normal file
8
WindowsFormsApp6/bin/Debug/System.ValueTuple.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>System.ValueTuple</name>
|
||||
</assembly>
|
||||
<members>
|
||||
</members>
|
||||
</doc>
|
||||
BIN
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.exe
Normal file
BIN
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.exe
Normal file
Binary file not shown.
30
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.exe.config
Normal file
30
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.exe.config
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
|
||||
</startup>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="Microsoft.IO.RecyclableMemoryStream" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
|
||||
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
</configuration>
|
||||
BIN
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.pdb
Normal file
BIN
WindowsFormsApp6/bin/Debug/WindowsFormsApp6.pdb
Normal file
Binary file not shown.
BIN
WindowsFormsApp6/bin/Debug/ZString.dll
Normal file
BIN
WindowsFormsApp6/bin/Debug/ZString.dll
Normal file
Binary file not shown.
1419
WindowsFormsApp6/bin/Debug/ZString.xml
Normal file
1419
WindowsFormsApp6/bin/Debug/ZString.xml
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user