mirror of
https://github.com/Grace-Solutions/PSMinIO.git
synced 2026-07-27 23:28:57 +00:00
2974ead76e
Key Achievements: - Downgraded to MinIO 4.0.7 for PowerShell compatibility (eliminated async/await issues) - Fixed file handle leaks in upload operations (using explicit FileStream management) - Implemented clean logging (timestamps without redundant prefixes) - Fixed automatic session variable management (Connect-MinIO stores, cmdlets retrieve) - Removed duplicate certificate parameters (kept only SkipCertificateValidation) - Fixed all 'Folder' alias conflicts across cmdlets - Added correct System.Runtime.CompilerServices.Unsafe.dll version (4.5.3) Working Features: - Connection management (automatic + explicit override) - Bucket operations (list, create, remove) - File upload/download (with proper handle release) - Progress tracking and speed reporting - Clean verbose logging with timestamps Known Issue: - Chunked operations have threading violations (PowerShell cmdlet methods called from background threads) - Regular operations work perfectly, chunked operations need threading architecture fix Test Results: - 3.71GB Windows install.wim file tested - Regular upload/download: Working - File handles: No leaks, immediate deletion possible - Session management: Automatic connection storage/retrieval - Chunked operations: Threading violations need fix
93 lines
4.6 KiB
XML
93 lines
4.6 KiB
XML
<?xml version="1.0"?>
|
|
<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.Read``1(System.Void*)">
|
|
<summary>
|
|
Reads a value of type T from the given location.
|
|
</summary>
|
|
<typeparam name="T">The type to read.</typeparam>
|
|
<param name="source">The location to read from.</param>
|
|
<returns>An object of type T read from the given location.</returns>
|
|
</member>
|
|
<member name="M:System.Runtime.CompilerServices.Unsafe.Write``1(System.Void*,``0)">
|
|
<summary>
|
|
Writes a value of type T to the given location.
|
|
</summary>
|
|
<typeparam name="T">The type of value to write.</typeparam>
|
|
<param name="destination">The location to write to.</param>
|
|
<param name="value">The value to write.</param>
|
|
</member>
|
|
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(System.Void*,``0@)">
|
|
<summary>
|
|
Copies a value of type T to the given location.
|
|
</summary>
|
|
<typeparam name="T">The type of value to copy.</typeparam>
|
|
<param name="destination">The location to copy to.</param>
|
|
<param name="source">A reference to the value to copy.</param>
|
|
</member>
|
|
<member name="M:System.Runtime.CompilerServices.Unsafe.Copy``1(``0@,System.Void*)">
|
|
<summary>
|
|
Copies a value of type T to the given location.
|
|
</summary>
|
|
<typeparam name="T">The type of value to copy.</typeparam>
|
|
<param name="destination">The location to copy to.</param>
|
|
<param name="source">A pointer to the value to copy.</param>
|
|
</member>
|
|
<member name="M:System.Runtime.CompilerServices.Unsafe.AsPointer``1(``0@)">
|
|
<summary>
|
|
Returns a pointer to the given by-ref parameter.
|
|
</summary>
|
|
<typeparam name="T">The type of object.</typeparam>
|
|
<param name="value">The object whose pointer is obtained.</param>
|
|
<returns>A pointer to the given value.</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 T.</returns>
|
|
</member>
|
|
<member name="M:System.Runtime.CompilerServices.Unsafe.As``1(System.Object)">
|
|
<summary>
|
|
Casts the given object to the specified type.
|
|
</summary>
|
|
<typeparam name="T">The type which the object will be cast to.</typeparam>
|
|
<param name="o">The object to cast.</param>
|
|
<returns>The original object, casted to the given type.</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 T.
|
|
</summary>
|
|
<typeparam name="T">The type of the interpreted location.</typeparam>
|
|
<param name="source">The location of the value to reference.</param>
|
|
<returns>A reference to a value of type T.</returns>
|
|
</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.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>
|
|
</members>
|
|
</doc>
|