diff --git a/StockManMVC/StockManMVC.csproj b/StockManMVC/StockManMVC.csproj index 5147419..a7ed3ac 100644 --- a/StockManMVC/StockManMVC.csproj +++ b/StockManMVC/StockManMVC.csproj @@ -102,8 +102,8 @@ ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll - - ..\packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + + ..\packages\System.Runtime.CompilerServices.Unsafe.4.7.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll diff --git a/StockManMVC/Web.config b/StockManMVC/Web.config index 12f62c3..cd18d7a 100644 --- a/StockManMVC/Web.config +++ b/StockManMVC/Web.config @@ -84,6 +84,10 @@ + + + + diff --git a/StockManMVC/packages.config b/StockManMVC/packages.config index 53717e7..c834dd9 100644 --- a/StockManMVC/packages.config +++ b/StockManMVC/packages.config @@ -34,7 +34,7 @@ - + diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg b/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg deleted file mode 100644 index 4c89963..0000000 Binary files a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/System.Runtime.CompilerServices.Unsafe.4.5.2.nupkg and /dev/null differ diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml deleted file mode 100644 index 6a7cfcf..0000000 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml +++ /dev/null @@ -1,200 +0,0 @@ - - - System.Runtime.CompilerServices.Unsafe - - - - Contains generic, low-level functionality for manipulating pointers. - - - Adds an element offset to the given reference. - The reference to add the offset to. - The offset to add. - The type of reference. - A new reference that reflects the addition of offset to pointer. - - - Adds an element offset to the given reference. - The reference to add the offset to. - The offset to add. - The type of reference. - A new reference that reflects the addition of offset to pointer. - - - Adds a byte offset to the given reference. - The reference to add the offset to. - The offset to add. - The type of reference. - A new reference that reflects the addition of byte offset to pointer. - - - Determines whether the specified references point to the same location. - The first reference to compare. - The second reference to compare. - The type of reference. - true if left and right point to the same location; otherwise, false. - - - Casts the given object to the specified type. - The object to cast. - The type which the object will be cast to. - The original object, casted to the given type. - - - Reinterprets the given reference as a reference to a value of type TTo. - The reference to reinterpret. - The type of reference to reinterpret.. - The desired type of the reference. - A reference to a value of type TTo. - - - Returns a pointer to the given by-ref parameter. - The object whose pointer is obtained. - The type of object. - A pointer to the given value. - - - Reinterprets the given location as a reference to a value of type T. - The location of the value to reference. - The type of the interpreted location. - A reference to a value of type T. - - - Determines the byte offset from origin to target from the given references. - The reference to origin. - The reference to target. - The type of reference. - Byte offset from origin to target i.e. target - origin. - - - Copies a value of type T to the given location. - The location to copy to. - A reference to the value to copy. - The type of value to copy. - - - Copies a value of type T to the given location. - The location to copy to. - A pointer to the value to copy. - The type of value to copy. - - - Copies bytes from the source address to the destination address. - The destination address to copy to. - The source address to copy from. - The number of bytes to copy. - - - Copies bytes from the source address to the destination address. - The destination address to copy to. - The source address to copy from. - The number of bytes to copy. - - - Copies bytes from the source address to the destination address -without assuming architecture dependent alignment of the addresses. - The destination address to copy to. - The source address to copy from. - The number of bytes to copy. - - - Copies bytes from the source address to the destination address -without assuming architecture dependent alignment of the addresses. - The destination address to copy to. - The source address to copy from. - The number of bytes to copy. - - - Initializes a block of memory at the given location with a given initial value. - The address of the start of the memory block to initialize. - The value to initialize the block to. - The number of bytes to initialize. - - - Initializes a block of memory at the given location with a given initial value. - The address of the start of the memory block to initialize. - The value to initialize the block to. - The number of bytes to initialize. - - - Initializes a block of memory at the given location with a given initial value -without assuming architecture dependent alignment of the address. - The address of the start of the memory block to initialize. - The value to initialize the block to. - The number of bytes to initialize. - - - Initializes a block of memory at the given location with a given initial value -without assuming architecture dependent alignment of the address. - The address of the start of the memory block to initialize. - The value to initialize the block to. - The number of bytes to initialize. - - - Reads a value of type T from the given location. - The location to read from. - The type to read. - An object of type T read from the given location. - - - Reads a value of type T from the given location -without assuming architecture dependent alignment of the addresses. - The location to read from. - The type to read. - An object of type T read from the given location. - - - Reads a value of type T from the given location -without assuming architecture dependent alignment of the addresses. - The location to read from. - The type to read. - An object of type T read from the given location. - - - Returns the size of an object of the given type parameter. - The type of object whose size is retrieved. - The size of an object of type T. - - - Subtracts an element offset from the given reference. - The reference to subtract the offset from. - The offset to subtract. - The type of reference. - A new reference that reflects the subraction of offset from pointer. - - - Subtracts an element offset from the given reference. - The reference to subtract the offset from. - The offset to subtract. - The type of reference. - A new reference that reflects the subraction of offset from pointer. - - - Subtracts a byte offset from the given reference. - The reference to subtract the offset from. - - The type of reference. - A new reference that reflects the subraction of byte offset from pointer. - - - Writes a value of type T to the given location. - The location to write to. - The value to write. - The type of value to write. - - - Writes a value of type T to the given location -without assuming architecture dependent alignment of the addresses. - The location to write to. - The value to write. - The type of value to write. - - - Writes a value of type T to the given location -without assuming architecture dependent alignment of the addresses. - The location to write to. - The value to write. - The type of value to write. - - - \ No newline at end of file diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt b/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt deleted file mode 100644 index 6930860..0000000 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/version.txt +++ /dev/null @@ -1 +0,0 @@ -02b11eeee1fbc5f3ef43a1452fe07efd25fa1715 diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s similarity index 77% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s index 86a0f08..e936987 100644 Binary files a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/.signature.p7s and b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/.signature.p7s differ diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/LICENSE.TXT b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT similarity index 100% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/LICENSE.TXT rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/LICENSE.TXT diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.4.7.0.nupkg b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.4.7.0.nupkg new file mode 100644 index 0000000..c2d28a4 Binary files /dev/null and b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/System.Runtime.CompilerServices.Unsafe.4.7.0.nupkg differ diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT similarity index 83% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT index db542ca..77a243e 100644 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/THIRD-PARTY-NOTICES.TXT +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/THIRD-PARTY-NOTICES.TXT @@ -8,6 +8,15 @@ bring it to our attention. Post an issue or email us: The attached notices are provided for information only. +License notice for ASP.NET +------------------------------- + +Copyright (c) .NET Foundation. All rights reserved. +Licensed under the Apache License, Version 2.0. + +Available at +https://github.com/aspnet/AspNetCore/blob/master/LICENSE.txt + License notice for Slicing-by-8 ------------------------------- @@ -307,3 +316,60 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +License notice for Json.NET +------------------------------- + +https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md + +The MIT License (MIT) + +Copyright (c) 2007 James Newton-King + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License notice for vectorized base64 encoding / decoding +-------------------------------------------------------- + +Copyright (c) 2005-2007, Nick Galbreath +Copyright (c) 2013-2017, Alfred Klomp +Copyright (c) 2015-2017, Wojciech Mula +Copyright (c) 2016-2017, Matthieu Darbois +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS +IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED +TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml similarity index 68% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml index 6a7cfcf..2ee9db6 100644 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml @@ -1,4 +1,5 @@ - + + System.Runtime.CompilerServices.Unsafe @@ -20,6 +21,13 @@ The type of reference. A new reference that reflects the addition of offset to pointer. + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + Adds a byte offset to the given reference. The reference to add the offset to. @@ -32,7 +40,8 @@ The first reference to compare. The second reference to compare. The type of reference. - true if left and right point to the same location; otherwise, false. + + if and point to the same location; otherwise, . Casts the given object to the specified type. @@ -41,11 +50,11 @@ The original object, casted to the given type. - Reinterprets the given reference as a reference to a value of type TTo. + Reinterprets the given reference as a reference to a value of type . The reference to reinterpret. - The type of reference to reinterpret.. + The type of reference to reinterpret. The desired type of the reference. - A reference to a value of type TTo. + A reference to a value of type . Returns a pointer to the given by-ref parameter. @@ -53,31 +62,37 @@ The type of object. A pointer to the given value. + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + - Reinterprets the given location as a reference to a value of type T. + Reinterprets the given location as a reference to a value of type . The location of the value to reference. The type of the interpreted location. - A reference to a value of type T. + A reference to a value of type . Determines the byte offset from origin to target from the given references. The reference to origin. The reference to target. The type of reference. - Byte offset from origin to target i.e. target - origin. - - - Copies a value of type T to the given location. - The location to copy to. - A reference to the value to copy. - The type of value to copy. + Byte offset from origin to target i.e. - . - Copies a value of type T to the given location. + Copies a value of type to the given location. The location to copy to. A pointer to the value to copy. The type of value to copy. + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + Copies bytes from the source address to the destination address. The destination address to copy to. @@ -90,15 +105,15 @@ The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. @@ -117,80 +132,117 @@ without assuming architecture dependent alignment of the addresses. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + - Reads a value of type T from the given location. + Reads a value of type from the given location. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. Returns the size of an object of the given type parameter. The type of object whose size is retrieved. - The size of an object of type T. + The size of an object of type . Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. Subtracts a byte offset from the given reference. The reference to subtract the offset from. - + The offset to subtract. The type of reference. - A new reference that reflects the subraction of byte offset from pointer. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. - Writes a value of type T to the given location. + Writes a value of type to the given location. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml similarity index 68% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml index 6a7cfcf..2ee9db6 100644 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml @@ -1,4 +1,5 @@ - + + System.Runtime.CompilerServices.Unsafe @@ -20,6 +21,13 @@ The type of reference. A new reference that reflects the addition of offset to pointer. + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + Adds a byte offset to the given reference. The reference to add the offset to. @@ -32,7 +40,8 @@ The first reference to compare. The second reference to compare. The type of reference. - true if left and right point to the same location; otherwise, false. + + if and point to the same location; otherwise, . Casts the given object to the specified type. @@ -41,11 +50,11 @@ The original object, casted to the given type. - Reinterprets the given reference as a reference to a value of type TTo. + Reinterprets the given reference as a reference to a value of type . The reference to reinterpret. - The type of reference to reinterpret.. + The type of reference to reinterpret. The desired type of the reference. - A reference to a value of type TTo. + A reference to a value of type . Returns a pointer to the given by-ref parameter. @@ -53,31 +62,37 @@ The type of object. A pointer to the given value. + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + - Reinterprets the given location as a reference to a value of type T. + Reinterprets the given location as a reference to a value of type . The location of the value to reference. The type of the interpreted location. - A reference to a value of type T. + A reference to a value of type . Determines the byte offset from origin to target from the given references. The reference to origin. The reference to target. The type of reference. - Byte offset from origin to target i.e. target - origin. - - - Copies a value of type T to the given location. - The location to copy to. - A reference to the value to copy. - The type of value to copy. + Byte offset from origin to target i.e. - . - Copies a value of type T to the given location. + Copies a value of type to the given location. The location to copy to. A pointer to the value to copy. The type of value to copy. + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + Copies bytes from the source address to the destination address. The destination address to copy to. @@ -90,15 +105,15 @@ The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. @@ -117,80 +132,117 @@ without assuming architecture dependent alignment of the addresses. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + - Reads a value of type T from the given location. + Reads a value of type from the given location. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. Returns the size of an object of the given type parameter. The type of object whose size is retrieved. - The size of an object of type T. + The size of an object of type . Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. Subtracts a byte offset from the given reference. The reference to subtract the offset from. - + The offset to subtract. The type of reference. - A new reference that reflects the subraction of byte offset from pointer. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. - Writes a value of type T to the given location. + Writes a value of type to the given location. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml similarity index 68% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml index 6a7cfcf..2ee9db6 100644 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml @@ -1,4 +1,5 @@ - + + System.Runtime.CompilerServices.Unsafe @@ -20,6 +21,13 @@ The type of reference. A new reference that reflects the addition of offset to pointer. + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + Adds a byte offset to the given reference. The reference to add the offset to. @@ -32,7 +40,8 @@ The first reference to compare. The second reference to compare. The type of reference. - true if left and right point to the same location; otherwise, false. + + if and point to the same location; otherwise, . Casts the given object to the specified type. @@ -41,11 +50,11 @@ The original object, casted to the given type. - Reinterprets the given reference as a reference to a value of type TTo. + Reinterprets the given reference as a reference to a value of type . The reference to reinterpret. - The type of reference to reinterpret.. + The type of reference to reinterpret. The desired type of the reference. - A reference to a value of type TTo. + A reference to a value of type . Returns a pointer to the given by-ref parameter. @@ -53,31 +62,37 @@ The type of object. A pointer to the given value. + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + - Reinterprets the given location as a reference to a value of type T. + Reinterprets the given location as a reference to a value of type . The location of the value to reference. The type of the interpreted location. - A reference to a value of type T. + A reference to a value of type . Determines the byte offset from origin to target from the given references. The reference to origin. The reference to target. The type of reference. - Byte offset from origin to target i.e. target - origin. - - - Copies a value of type T to the given location. - The location to copy to. - A reference to the value to copy. - The type of value to copy. + Byte offset from origin to target i.e. - . - Copies a value of type T to the given location. + Copies a value of type to the given location. The location to copy to. A pointer to the value to copy. The type of value to copy. + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + Copies bytes from the source address to the destination address. The destination address to copy to. @@ -90,15 +105,15 @@ The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. @@ -117,80 +132,117 @@ without assuming architecture dependent alignment of the addresses. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + - Reads a value of type T from the given location. + Reads a value of type from the given location. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. Returns the size of an object of the given type parameter. The type of object whose size is retrieved. - The size of an object of type T. + The size of an object of type . Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. Subtracts a byte offset from the given reference. The reference to subtract the offset from. - + The offset to subtract. The type of reference. - A new reference that reflects the subraction of byte offset from pointer. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. - Writes a value of type T to the given location. + Writes a value of type to the given location. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml similarity index 68% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml index 6a7cfcf..2ee9db6 100644 --- a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml @@ -1,4 +1,5 @@ - + + System.Runtime.CompilerServices.Unsafe @@ -20,6 +21,13 @@ The type of reference. A new reference that reflects the addition of offset to pointer. + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + Adds a byte offset to the given reference. The reference to add the offset to. @@ -32,7 +40,8 @@ The first reference to compare. The second reference to compare. The type of reference. - true if left and right point to the same location; otherwise, false. + + if and point to the same location; otherwise, . Casts the given object to the specified type. @@ -41,11 +50,11 @@ The original object, casted to the given type. - Reinterprets the given reference as a reference to a value of type TTo. + Reinterprets the given reference as a reference to a value of type . The reference to reinterpret. - The type of reference to reinterpret.. + The type of reference to reinterpret. The desired type of the reference. - A reference to a value of type TTo. + A reference to a value of type . Returns a pointer to the given by-ref parameter. @@ -53,31 +62,37 @@ The type of object. A pointer to the given value. + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + - Reinterprets the given location as a reference to a value of type T. + Reinterprets the given location as a reference to a value of type . The location of the value to reference. The type of the interpreted location. - A reference to a value of type T. + A reference to a value of type . Determines the byte offset from origin to target from the given references. The reference to origin. The reference to target. The type of reference. - Byte offset from origin to target i.e. target - origin. - - - Copies a value of type T to the given location. - The location to copy to. - A reference to the value to copy. - The type of value to copy. + Byte offset from origin to target i.e. - . - Copies a value of type T to the given location. + Copies a value of type to the given location. The location to copy to. A pointer to the value to copy. The type of value to copy. + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + Copies bytes from the source address to the destination address. The destination address to copy to. @@ -90,15 +105,15 @@ The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. The number of bytes to copy. - - Copies bytes from the source address to the destination address + + Copies bytes from the source address to the destination address without assuming architecture dependent alignment of the addresses. The destination address to copy to. The source address to copy from. @@ -117,80 +132,117 @@ without assuming architecture dependent alignment of the addresses. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. - Initializes a block of memory at the given location with a given initial value + Initializes a block of memory at the given location with a given initial value without assuming architecture dependent alignment of the address. The address of the start of the memory block to initialize. The value to initialize the block to. The number of bytes to initialize. + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + - Reads a value of type T from the given location. + Reads a value of type from the given location. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. - Reads a value of type T from the given location + Reads a value of type from the given location without assuming architecture dependent alignment of the addresses. The location to read from. The type to read. - An object of type T read from the given location. + An object of type read from the given location. Returns the size of an object of the given type parameter. The type of object whose size is retrieved. - The size of an object of type T. + The size of an object of type . Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. Subtracts an element offset from the given reference. The reference to subtract the offset from. The offset to subtract. The type of reference. - A new reference that reflects the subraction of offset from pointer. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. Subtracts a byte offset from the given reference. The reference to subtract the offset from. - + The offset to subtract. The type of reference. - A new reference that reflects the subraction of byte offset from pointer. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. - Writes a value of type T to the given location. + Writes a value of type to the given location. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. The type of value to write. - Writes a value of type T to the given location + Writes a value of type to the given location without assuming architecture dependent alignment of the addresses. The location to write to. The value to write. diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml new file mode 100644 index 0000000..2ee9db6 --- /dev/null +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml @@ -0,0 +1,252 @@ + + + + System.Runtime.CompilerServices.Unsafe + + + + Contains generic, low-level functionality for manipulating pointers. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of offset to pointer. + + + Adds an element offset to the given void pointer. + The void pointer to add the offset to. + The offset to add. + The type of void pointer. + A new void pointer that reflects the addition of offset to the specified pointer. + + + Adds a byte offset to the given reference. + The reference to add the offset to. + The offset to add. + The type of reference. + A new reference that reflects the addition of byte offset to pointer. + + + Determines whether the specified references point to the same location. + The first reference to compare. + The second reference to compare. + The type of reference. + + if and point to the same location; otherwise, . + + + Casts the given object to the specified type. + The object to cast. + The type which the object will be cast to. + The original object, casted to the given type. + + + Reinterprets the given reference as a reference to a value of type . + The reference to reinterpret. + The type of reference to reinterpret. + The desired type of the reference. + A reference to a value of type . + + + Returns a pointer to the given by-ref parameter. + The object whose pointer is obtained. + The type of object. + A pointer to the given value. + + + Reinterprets the given read-only reference as a reference. + The read-only reference to reinterpret. + The type of reference. + A reference to a value of type . + + + Reinterprets the given location as a reference to a value of type . + The location of the value to reference. + The type of the interpreted location. + A reference to a value of type . + + + Determines the byte offset from origin to target from the given references. + The reference to origin. + The reference to target. + The type of reference. + Byte offset from origin to target i.e. - . + + + Copies a value of type to the given location. + The location to copy to. + A pointer to the value to copy. + The type of value to copy. + + + Copies a value of type to the given location. + The location to copy to. + A reference to the value to copy. + The type of value to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Copies bytes from the source address to the destination address +without assuming architecture dependent alignment of the addresses. + The destination address to copy to. + The source address to copy from. + The number of bytes to copy. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Initializes a block of memory at the given location with a given initial value +without assuming architecture dependent alignment of the address. + The address of the start of the memory block to initialize. + The value to initialize the block to. + The number of bytes to initialize. + + + Returns a value that indicates whether a specified reference is greater than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is greater than ; otherwise, . + + + Returns a value that indicates whether a specified reference is less than another specified reference. + The first value to compare. + The second value to compare. + The type of the reference. + + if is less than ; otherwise, . + + + Reads a value of type from the given location. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location +without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Reads a value of type from the given location +without assuming architecture dependent alignment of the addresses. + The location to read from. + The type to read. + An object of type read from the given location. + + + Returns the size of an object of the given type parameter. + The type of object whose size is retrieved. + The size of an object of type . + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of offset from pointer. + + + Subtracts an element offset from the given void pointer. + The void pointer to subtract the offset from. + The offset to subtract. + The type of the void pointer. + A new void pointer that reflects the subtraction of offset from the specified pointer. + + + Subtracts a byte offset from the given reference. + The reference to subtract the offset from. + The offset to subtract. + The type of reference. + A new reference that reflects the subtraction of byte offset from pointer. + + + Returns a to a boxed value. + The value to unbox. + The type to be unboxed. + A to the boxed value . + + is , and is a non-nullable value type. + + is not a boxed value type. +-or- + is not a boxed . + + cannot be found. + + + Writes a value of type to the given location. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location +without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + Writes a value of type to the given location +without assuming architecture dependent alignment of the addresses. + The location to write to. + The value to write. + The type of value to write. + + + \ No newline at end of file diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt similarity index 100% rename from packages/System.Runtime.CompilerServices.Unsafe.4.5.2/useSharedDesignerContext.txt rename to packages/System.Runtime.CompilerServices.Unsafe.4.7.0/useSharedDesignerContext.txt diff --git a/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt new file mode 100644 index 0000000..f5d54e7 --- /dev/null +++ b/packages/System.Runtime.CompilerServices.Unsafe.4.7.0/version.txt @@ -0,0 +1 @@ +0f7f38c4fd323b26da10cce95f857f77f0f09b48