summaryrefslogtreecommitdiff
path: root/.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml')
-rwxr-xr-x.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml5747
1 files changed, 5747 insertions, 0 deletions
diff --git a/.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml b/.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml
new file mode 100755
index 0000000000..91cb8a885c
--- /dev/null
+++ b/.packages/microsoft.private.corefx.netcoreapp/4.7.0-preview3.19551.4/ref/netcoreapp3.1/System.Runtime.InteropServices.xml
@@ -0,0 +1,5747 @@
+<?xml version="1.0" encoding="utf-8"?>
+<doc>
+ <assembly>
+ <name>System.Runtime.InteropServices</name>
+ </assembly>
+ <members>
+ <member name="T:System.DataMisalignedException">
+ <summary>The exception that is thrown when a unit of data is read from or written to an address that is not a multiple of the data size. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.DataMisalignedException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class.</summary>
+ </member>
+ <member name="M:System.DataMisalignedException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class using the specified error message.</summary>
+ <param name="message">A <see cref="T:System.String" /> object that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ </member>
+ <member name="M:System.DataMisalignedException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.DataMisalignedException" /> class using the specified error message and underlying exception.</summary>
+ <param name="message">A <see cref="T:System.String" /> object that describes the error. The content of <paramref name="message" /> is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
+ <param name="innerException">The exception that is the cause of the current <see cref="T:System.DataMisalignedException" />. If the <paramref name="innerException" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.DllNotFoundException">
+ <summary>The exception that is thrown when a DLL specified in a DLL import cannot be found.</summary>
+ </member>
+ <member name="M:System.DllNotFoundException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with default properties.</summary>
+ </member>
+ <member name="M:System.DllNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with serialized data.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
+ </member>
+ <member name="M:System.DllNotFoundException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with a specified error message.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ </member>
+ <member name="M:System.DllNotFoundException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.DllNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.IO.UnmanagedMemoryAccessor">
+ <summary>Provides random access to unmanaged blocks of memory from managed code.</summary>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryAccessor" /> class.</summary>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.#ctor(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryAccessor" /> class with a specified buffer, offset, and capacity.</summary>
+ <param name="buffer">The buffer to contain the accessor.</param>
+ <param name="offset">The byte at which to start the accessor.</param>
+ <param name="capacity">The size, in bytes, of memory to allocate.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> is greater than <paramref name="buffer" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="capacity" /> is less than zero.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> would wrap around the high end of the address space.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.#ctor(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryAccessor" /> class with a specified buffer, offset, capacity, and access right.</summary>
+ <param name="buffer">The buffer to contain the accessor.</param>
+ <param name="offset">The byte at which to start the accessor.</param>
+ <param name="capacity">The size, in bytes, of memory to allocate.</param>
+ <param name="access">The type of access allowed to the memory. The default is <see cref="F:System.IO.MemoryMappedFiles.MemoryMappedFileAccess.ReadWrite" />.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> is greater than <paramref name="buffer" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="capacity" /> is less than zero.
+-or-
+<paramref name="access" /> is not a valid <see cref="T:System.IO.MemoryMappedFiles.MemoryMappedFileAccess" /> enumeration value.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> would wrap around the high end of the address space.</exception>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryAccessor.CanRead">
+ <summary>Determines whether the accessor is readable.</summary>
+ <returns>
+ <see langword="true" /> if the accessor is readable; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryAccessor.CanWrite">
+ <summary>Determines whether the accessory is writable.</summary>
+ <returns>
+ <see langword="true" /> if the accessor is writable; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryAccessor.Capacity">
+ <summary>Gets the capacity of the accessor.</summary>
+ <returns>The capacity of the accessor.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Dispose">
+ <summary>Releases all resources used by the <see cref="T:System.IO.UnmanagedMemoryAccessor" />.</summary>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.UnmanagedMemoryAccessor" /> 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>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Initialize(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Sets the initial values for the accessor.</summary>
+ <param name="buffer">The buffer to contain the accessor.</param>
+ <param name="offset">The byte at which to start the accessor.</param>
+ <param name="capacity">The size, in bytes, of memory to allocate.</param>
+ <param name="access">The type of access allowed to the memory. The default is <see cref="F:System.IO.MemoryMappedFiles.MemoryMappedFileAccess.ReadWrite" />.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> is greater than <paramref name="buffer" />.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="buffer" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="offset" /> or <paramref name="capacity" /> is less than zero.
+-or-
+<paramref name="access" /> is not a valid <see cref="T:System.IO.MemoryMappedFiles.MemoryMappedFileAccess" /> enumeration value.</exception>
+ <exception cref="T:System.InvalidOperationException">
+ <paramref name="offset" /> plus <paramref name="capacity" /> would wrap around the high end of the address space.</exception>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryAccessor.IsOpen">
+ <summary>Determines whether the accessor is currently open by a process.</summary>
+ <returns>
+ <see langword="true" /> if the accessor is open; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Read``1(System.Int64,``0@)">
+ <summary>Reads a structure of type <paramref name="T" /> from the accessor into a provided reference.</summary>
+ <param name="position">The position in the accessor at which to begin reading.</param>
+ <param name="structure">The structure to contain the read data.</param>
+ <typeparam name="T">The type of structure.</typeparam>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read in a structure of type <paramref name="T" />.
+-or-
+<see langword="T" /> is a value type that contains one or more reference types.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadArray``1(System.Int64,``0[],System.Int32,System.Int32)">
+ <summary>Reads structures of type <paramref name="T" /> from the accessor into an array of type <paramref name="T" />.</summary>
+ <param name="position">The number of bytes in the accessor at which to begin reading.</param>
+ <param name="array">The array to contain the structures read from the accessor.</param>
+ <param name="offset">The index in <paramref name="array" /> in which to place the first copied structure.</param>
+ <param name="count">The number of structures of type <c>T</c> to read from the accessor.</param>
+ <typeparam name="T">The type of structure.</typeparam>
+ <returns>The number of structures read into <paramref name="array" />. This value can be less than <paramref name="count" /> if there are fewer structures available, or zero if the end of the accessor is reached.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="array" /> is not large enough to contain <paramref name="count" /> of structures (starting from <paramref name="position" />).</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadBoolean(System.Int64)">
+ <summary>Reads a Boolean value from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>
+ <see langword="true" /> or <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadByte(System.Int64)">
+ <summary>Reads a byte value from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadChar(System.Int64)">
+ <summary>Reads a character from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadDecimal(System.Int64)">
+ <summary>Reads a decimal value from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.
+-or-
+The decimal to read is invalid.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadDouble(System.Int64)">
+ <summary>Reads a double-precision floating-point value from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadInt16(System.Int64)">
+ <summary>Reads a 16-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadInt32(System.Int64)">
+ <summary>Reads a 32-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadInt64(System.Int64)">
+ <summary>Reads a 64-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadSByte(System.Int64)">
+ <summary>Reads an 8-bit signed integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadSingle(System.Int64)">
+ <summary>Reads a single-precision floating-point value from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadUInt16(System.Int64)">
+ <summary>Reads an unsigned 16-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadUInt32(System.Int64)">
+ <summary>Reads an unsigned 32-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.ReadUInt64(System.Int64)">
+ <summary>Reads an unsigned 64-bit integer from the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin reading.</param>
+ <returns>The value that was read.</returns>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to read a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support reading.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Boolean)">
+ <summary>Writes a Boolean value into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Byte)">
+ <summary>Writes a byte value into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Char)">
+ <summary>Writes a character into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Decimal)">
+ <summary>Writes a decimal value into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.
+-or-
+The decimal is invalid.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Double)">
+ <summary>Writes a <see langword="Double" /> value into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Int16)">
+ <summary>Writes a 16-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Int32)">
+ <summary>Writes a 32-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Int64)">
+ <summary>Writes a 64-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after position to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.SByte)">
+ <summary>Writes an 8-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.Single)">
+ <summary>Writes a <see langword="Single" /> into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.UInt16)">
+ <summary>Writes an unsigned 16-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.UInt32)">
+ <summary>Writes an unsigned 32-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write(System.Int64,System.UInt64)">
+ <summary>Writes an unsigned 64-bit integer into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="value">The value to write.</param>
+ <exception cref="T:System.ArgumentException">There are not enough bytes after <paramref name="position" /> to write a value.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.Write``1(System.Int64,``0@)">
+ <summary>Writes a structure into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="structure">The structure to write.</param>
+ <typeparam name="T">The type of structure.</typeparam>
+ <exception cref="T:System.ArgumentException">There are not enough bytes in the accessor after <paramref name="position" /> to write a structure of type <paramref name="T" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryAccessor.WriteArray``1(System.Int64,``0[],System.Int32,System.Int32)">
+ <summary>Writes structures from an array of type <paramref name="T" /> into the accessor.</summary>
+ <param name="position">The number of bytes into the accessor at which to begin writing.</param>
+ <param name="array">The array to write into the accessor.</param>
+ <param name="offset">The index in <paramref name="array" /> to start writing from.</param>
+ <param name="count">The number of structures in <paramref name="array" /> to write.</param>
+ <typeparam name="T">The type of structure.</typeparam>
+ <exception cref="T:System.ArgumentException">There are not enough bytes in the accessor after <paramref name="position" /> to write the number of structures specified by <paramref name="count" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="position" /> is less than zero or greater than the capacity of the accessor.
+-or-
+<paramref name="offset" /> or <paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The accessor does not support writing.</exception>
+ <exception cref="T:System.ObjectDisposedException">The accessor has been disposed.</exception>
+ </member>
+ <member name="T:System.IO.UnmanagedMemoryStream">
+ <summary>Provides access to unmanaged blocks of memory from managed code.</summary>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class.</summary>
+ <exception cref="T:System.Security.SecurityException">The user does not have the required permission.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Byte*,System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class using the specified location and memory length.</summary>
+ <param name="pointer">A pointer to an unmanaged memory location.</param>
+ <param name="length">The length of the memory to use.</param>
+ <exception cref="T:System.Security.SecurityException">The user does not have the required permission.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="pointer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="length" /> value is less than zero.
+-or-
+The <paramref name="length" /> is large enough to cause an overflow.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class using the specified location, memory length, total amount of memory, and file access values.</summary>
+ <param name="pointer">A pointer to an unmanaged memory location.</param>
+ <param name="length">The length of the memory to use.</param>
+ <param name="capacity">The total amount of memory assigned to the stream.</param>
+ <param name="access">One of the <see cref="T:System.IO.FileAccess" /> values.</param>
+ <exception cref="T:System.Security.SecurityException">The user does not have the required permission.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="pointer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="length" /> value is less than zero.
+-or-
+The <paramref name="capacity" /> value is less than zero.
+-or-
+The <paramref name="length" /> value is greater than the <paramref name="capacity" /> value.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class in a safe buffer with a specified offset and length.</summary>
+ <param name="buffer">The buffer to contain the unmanaged memory stream.</param>
+ <param name="offset">The byte position in the buffer at which to start the unmanaged memory stream.</param>
+ <param name="length">The length of the unmanaged memory stream.</param>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.#ctor(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class in a safe buffer with a specified offset, length, and file access.</summary>
+ <param name="buffer">The buffer to contain the unmanaged memory stream.</param>
+ <param name="offset">The byte position in the buffer at which to start the unmanaged memory stream.</param>
+ <param name="length">The length of the unmanaged memory stream.</param>
+ <param name="access">The mode of file access to the unmanaged memory stream.</param>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.CanRead">
+ <summary>Gets a value indicating whether a stream supports reading.</summary>
+ <returns>
+ <see langword="false" /> if the object was created by a constructor with an <paramref name="access" /> parameter that did not include reading the stream and if the stream is closed; otherwise, <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.CanSeek">
+ <summary>Gets a value indicating whether a stream supports seeking.</summary>
+ <returns>
+ <see langword="false" /> if the stream is closed; otherwise, <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.CanWrite">
+ <summary>Gets a value indicating whether a stream supports writing.</summary>
+ <returns>
+ <see langword="false" /> if the object was created by a constructor with an <paramref name="access" /> parameter value that supports writing or was created by a constructor that had no parameters, or if the stream is closed; otherwise, <see langword="true" />.</returns>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.Capacity">
+ <summary>Gets the stream length (size) or the total amount of memory assigned to a stream (capacity).</summary>
+ <returns>The size or capacity of the stream.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Dispose(System.Boolean)">
+ <summary>Releases the unmanaged resources used by the <see cref="T:System.IO.UnmanagedMemoryStream" /> 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>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Flush">
+ <summary>Overrides the <see cref="M:System.IO.Stream.Flush" /> method so that no action is performed.</summary>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.FlushAsync(System.Threading.CancellationToken)">
+ <summary>Overrides the <see cref="M:System.IO.Stream.FlushAsync(System.Threading.CancellationToken)" /> method so that the operation is cancelled if specified, but no other action is performed.</summary>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous flush operation.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Initialize(System.Byte*,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class by using a pointer to an unmanaged memory location.</summary>
+ <param name="pointer">A pointer to an unmanaged memory location.</param>
+ <param name="length">The length of the memory to use.</param>
+ <param name="capacity">The total amount of memory assigned to the stream.</param>
+ <param name="access">One of the <see cref="T:System.IO.FileAccess" /> values.</param>
+ <exception cref="T:System.Security.SecurityException">The user does not have the required permission.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="pointer" /> value is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="length" /> value is less than zero.
+-or-
+The <paramref name="capacity" /> value is less than zero.
+-or-
+The <paramref name="length" /> value is large enough to cause an overflow.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Initialize(System.Runtime.InteropServices.SafeBuffer,System.Int64,System.Int64,System.IO.FileAccess)">
+ <summary>Initializes a new instance of the <see cref="T:System.IO.UnmanagedMemoryStream" /> class in a safe buffer with a specified offset, length, and file access.</summary>
+ <param name="buffer">The buffer to contain the unmanaged memory stream.</param>
+ <param name="offset">The byte position in the buffer at which to start the unmanaged memory stream.</param>
+ <param name="length">The length of the unmanaged memory stream.</param>
+ <param name="access">The mode of file access to the unmanaged memory stream.</param>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.Length">
+ <summary>Gets the length of the data in a stream.</summary>
+ <returns>The length of the data in the stream.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.Position">
+ <summary>Gets or sets the current position in a stream.</summary>
+ <returns>The current position in the stream.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The position is set to a value that is less than zero, or the position is larger than <see cref="F:System.Int32.MaxValue" /> or results in overflow when added to the current pointer.</exception>
+ </member>
+ <member name="P:System.IO.UnmanagedMemoryStream.PositionPointer">
+ <summary>Gets or sets a byte pointer to a stream based on the current position in the stream.</summary>
+ <returns>A byte pointer.</returns>
+ <exception cref="T:System.IndexOutOfRangeException">The current position is larger than the capacity of the stream.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The position is being set is not a valid position in the current stream.</exception>
+ <exception cref="T:System.IO.IOException">The pointer is being set to a lower value than the starting position of the stream.</exception>
+ <exception cref="T:System.NotSupportedException">The stream was initialized for use with a <see cref="T:System.Runtime.InteropServices.SafeBuffer" />. The <see cref="P:System.IO.UnmanagedMemoryStream.PositionPointer" /> property is valid only for streams that are initialized with a <see cref="T:System.Byte" /> pointer.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Read(System.Byte[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of bytes into the specified array.</summary>
+ <param name="buffer">When this method returns, contains the specified byte array with the values between <paramref name="offset" /> and (<paramref name="offset" /> + <paramref name="count" /> - 1) replaced by the bytes read from the current source. This parameter is passed uninitialized.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> at which to begin storing the data read from the current stream.</param>
+ <param name="count">The maximum number of bytes to read from the current stream.</param>
+ <returns>The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">The underlying memory does not support reading.
+-or-
+The <see cref="P:System.IO.UnmanagedMemoryStream.CanRead" /> property is set to <see langword="false" />.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> parameter is set to <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> parameter is less than zero.
+-or-
+The <paramref name="count" /> parameter is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The length of the buffer array minus the <paramref name="offset" /> parameter is less than the <paramref name="count" /> parameter.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Read(System.Span{System.Byte})">
+ <summary>Reads all the bytes of this unmanaged memory stream into the specified span of bytes.</summary>
+ <param name="destination">When this method returns, this span contains all the bytes from the unmanaged memory stream.</param>
+ <returns>The total number of bytes read into the destination.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously reads the specified number of bytes into the specified array.</summary>
+ <param name="buffer">The buffer to write the data into.</param>
+ <param name="offset">The byte offset in <paramref name="buffer" /> at which to begin writing data from the stream.</param>
+ <param name="count">The maximum number of bytes to read.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous read operation. The value of the <paramref name="TResult" /> parameter contains the total number of bytes read into the buffer. The result value can be less than the number of bytes requested if the number of bytes currently available is less than the requested number, or it can be 0 (zero) if the end of the stream has been reached.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.ReadAsync(System.Memory{System.Byte},System.Threading.CancellationToken)">
+ <summary>Asynchronously reads the unmanaged memory stream bytes into the memory region.</summary>
+ <param name="buffer">When the asynchronous method finishes, this memory region contains all the bytes read from the unmanaged memory stream.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous read operation, and wraps the total number of bytes read into the buffer.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.ReadByte">
+ <summary>Reads a byte from a stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.</summary>
+ <returns>The unsigned byte cast to an <see cref="T:System.Int32" /> object, or -1 if at the end of the stream.</returns>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">The underlying memory does not support reading.
+-or-
+The current position is at the end of the stream.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Seek(System.Int64,System.IO.SeekOrigin)">
+ <summary>Sets the current position of the current stream to the given value.</summary>
+ <param name="offset">The point relative to <c>origin</c> to begin seeking from.</param>
+ <param name="loc">Specifies the beginning, the end, or the current position as a reference point for <c>origin</c>, using a value of type <see cref="T:System.IO.SeekOrigin" />.</param>
+ <returns>The new position in the stream.</returns>
+ <exception cref="T:System.IO.IOException">An attempt was made to seek before the beginning of the stream.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="offset" /> value is larger than the maximum size of the stream.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="loc" /> is invalid.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.SetLength(System.Int64)">
+ <summary>Sets the length of a stream to a specified value.</summary>
+ <param name="value">The length of the stream.</param>
+ <exception cref="T:System.IO.IOException">An I/O error has occurred.</exception>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">The underlying memory does not support writing.
+-or-
+An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is <see langword="false" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The specified <paramref name="value" /> exceeds the capacity of the stream.
+-or-
+The specified <paramref name="value" /> is negative.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Write(System.Byte[],System.Int32,System.Int32)">
+ <summary>Writes a block of bytes to the current stream using data from a buffer.</summary>
+ <param name="buffer">The byte array from which to copy bytes to the current stream.</param>
+ <param name="offset">The offset in the buffer at which to begin copying bytes to the current stream.</param>
+ <param name="count">The number of bytes to write to the current stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">The underlying memory does not support writing.
+-or-
+An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is <see langword="false" />.
+-or-
+The <paramref name="count" /> value is greater than the capacity of the stream.
+-or-
+The position is at the end of the stream capacity.</exception>
+ <exception cref="T:System.IO.IOException">An I/O error occurs.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">One of the specified parameters is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="offset" /> parameter minus the length of the <paramref name="buffer" /> parameter is less than the <paramref name="count" /> parameter.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="buffer" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.Write(System.ReadOnlySpan{System.Byte})">
+ <summary>Writes a block of bytes to the current unmanaged memory stream using data from the provided span of bytes.</summary>
+ <param name="source">The span of bytes from which to copy bytes to the current unmanaged memory stream.</param>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="offset">The zero-based byte offset in <paramref name="buffer" /> from which to begin copying bytes to the stream.</param>
+ <param name="count">The maximum number of bytes to write.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.WriteAsync(System.ReadOnlyMemory{System.Byte},System.Threading.CancellationToken)">
+ <summary>Asynchronously writes a span of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.</summary>
+ <param name="buffer">The buffer to write data from.</param>
+ <param name="cancellationToken">The token to monitor for cancellation requests. The default value is <see cref="P:System.Threading.CancellationToken.None" />.</param>
+ <returns>A task that represents the asynchronous write operation.</returns>
+ </member>
+ <member name="M:System.IO.UnmanagedMemoryStream.WriteByte(System.Byte)">
+ <summary>Writes a byte to the current position in the file stream.</summary>
+ <param name="value">A byte value written to the stream.</param>
+ <exception cref="T:System.ObjectDisposedException">The stream is closed.</exception>
+ <exception cref="T:System.NotSupportedException">The underlying memory does not support writing.
+-or-
+An attempt is made to write to the stream and the <see cref="P:System.IO.UnmanagedMemoryStream.CanWrite" /> property is <see langword="false" />.
+-or-
+The current position is at the end of the capacity of the stream.</exception>
+ <exception cref="T:System.IO.IOException">The supplied <paramref name="value" /> causes the stream exceed its maximum capacity.</exception>
+ </member>
+ <member name="T:System.Runtime.CompilerServices.IDispatchConstantAttribute">
+ <summary>Indicates that the default value for the attributed field or parameter is an instance of <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />, where the <see cref="P:System.Runtime.InteropServices.DispatchWrapper.WrappedObject" /> is <see langword="null" />.</summary>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.IDispatchConstantAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IDispatchConstantAttribute" /> class.</summary>
+ </member>
+ <member name="P:System.Runtime.CompilerServices.IDispatchConstantAttribute.Value">
+ <summary>Gets the <see langword="IDispatch" /> constant stored in this attribute.</summary>
+ <returns>The <see langword="IDispatch" /> constant stored in this attribute. Only <see langword="null" /> is allowed for an <see langword="IDispatch" /> constant value.</returns>
+ </member>
+ <member name="T:System.Runtime.CompilerServices.IUnknownConstantAttribute">
+ <summary>Indicates that the default value for the attributed field or parameter is an instance of <see cref="T:System.Runtime.InteropServices.UnknownWrapper" />, where the <see cref="P:System.Runtime.InteropServices.UnknownWrapper.WrappedObject" /> is <see langword="null" />. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.CompilerServices.IUnknownConstantAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.CompilerServices.IUnknownConstantAttribute" /> class.</summary>
+ </member>
+ <member name="P:System.Runtime.CompilerServices.IUnknownConstantAttribute.Value">
+ <summary>Gets the <see langword="IUnknown" /> constant stored in this attribute.</summary>
+ <returns>The <see langword="IUnknown" /> constant stored in this attribute. Only <see langword="null" /> is allowed for an <see langword="IUnknown" /> constant value.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute">
+ <summary>Allows an unmanaged method to call a managed method.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.AllowReversePInvokeCallsAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ArrayWithOffset">
+ <summary>Encapsulates an array and an offset within the specified array.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.#ctor(System.Object,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> structure.</summary>
+ <param name="array">A managed array.</param>
+ <param name="offset">The offset in bytes, of the element to be passed through platform invoke.</param>
+ <exception cref="T:System.ArgumentException">The array is larger than 2 gigabytes (GB).</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.Equals(System.Object)">
+ <summary>Indicates whether the specified object matches the current <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object.</summary>
+ <param name="obj">Object to compare with this instance.</param>
+ <returns>
+ <see langword="true" /> if the object matches this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.Equals(System.Runtime.InteropServices.ArrayWithOffset)">
+ <summary>Indicates whether the specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object matches the current instance.</summary>
+ <param name="obj">An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with this instance.</param>
+ <returns>
+ <see langword="true" /> if the specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object matches the current instance; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetArray">
+ <summary>Returns the managed array referenced by this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" />.</summary>
+ <returns>The managed array this instance references.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetHashCode">
+ <summary>Returns a hash code for this value type.</summary>
+ <returns>The hash code for this instance.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.GetOffset">
+ <summary>Returns the offset provided when this <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> was constructed.</summary>
+ <returns>The offset for this instance.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.op_Equality(System.Runtime.InteropServices.ArrayWithOffset,System.Runtime.InteropServices.ArrayWithOffset)">
+ <summary>Determines whether two specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> objects have the same value.</summary>
+ <param name="a">An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="b" /> parameter.</param>
+ <param name="b">An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="a" /> parameter.</param>
+ <returns>
+ <see langword="true" /> if the value of <paramref name="a" /> is the same as the value of <paramref name="b" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ArrayWithOffset.op_Inequality(System.Runtime.InteropServices.ArrayWithOffset,System.Runtime.InteropServices.ArrayWithOffset)">
+ <summary>Determines whether two specified <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> objects no not have the same value.</summary>
+ <param name="a">An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="b" /> parameter.</param>
+ <param name="b">An <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object to compare with the <paramref name="a" /> parameter.</param>
+ <returns>
+ <see langword="true" /> if the value of <paramref name="a" /> is not the same as the value of <paramref name="b" />; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.AutomationProxyAttribute">
+ <summary>Specifies whether the type should be marshaled using the Automation marshaler or a custom proxy and stub.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.AutomationProxyAttribute.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.AutomationProxyAttribute" /> class.</summary>
+ <param name="val">
+ <see langword="true" /> if the class should be marshaled using the Automation Marshaler; <see langword="false" /> if a proxy stub marshaler should be used.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.AutomationProxyAttribute.Value">
+ <summary>Gets a value indicating the type of marshaler to use.</summary>
+ <returns>
+ <see langword="true" /> if the class should be marshaled using the Automation Marshaler; <see langword="false" /> if a proxy stub marshaler should be used.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.BestFitMappingAttribute">
+ <summary>Controls whether Unicode characters are converted to the closest matching ANSI characters.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.BestFitMappingAttribute.#ctor(System.Boolean)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.BestFitMappingAttribute" /> class set to the value of the <see cref="P:System.Runtime.InteropServices.BestFitMappingAttribute.BestFitMapping" /> property.</summary>
+ <param name="BestFitMapping">
+ <see langword="true" /> to indicate that best-fit mapping is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.BestFitMappingAttribute.BestFitMapping">
+ <summary>Gets the best-fit mapping behavior when converting Unicode characters to ANSI characters.</summary>
+ <returns>
+ <see langword="true" /> if best-fit mapping is enabled; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
+ </member>
+ <member name="F:System.Runtime.InteropServices.BestFitMappingAttribute.ThrowOnUnmappableChar">
+ <summary>Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI '?' character.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.BStrWrapper">
+ <summary>Marshals data of type <see langword="VT_BSTR" /> from managed to unmanaged code. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.BStrWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.BStrWrapper" /> class with the specified <see cref="T:System.Object" /> object.</summary>
+ <param name="value">The object to wrap and marshal as <see langword="VT_BSTR" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.BStrWrapper.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.BStrWrapper" /> class with the specified <see cref="T:System.String" /> object.</summary>
+ <param name="value">The object to wrap and marshal as <see langword="VT_BSTR" />.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.BStrWrapper.WrappedObject">
+ <summary>Gets the wrapped <see cref="T:System.String" /> object to marshal as type <see langword="VT_BSTR" />.</summary>
+ <returns>The object that is wrapped by <see cref="T:System.Runtime.InteropServices.BStrWrapper" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.CallingConvention">
+ <summary>Specifies the calling convention required to call methods implemented in unmanaged code.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CallingConvention.Cdecl">
+ <summary>The caller cleans the stack. This enables calling functions with <see langword="varargs" />, which makes it appropriate to use for methods that accept a variable number of parameters, such as <see langword="Printf" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CallingConvention.FastCall">
+ <summary>This calling convention is not supported.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CallingConvention.StdCall">
+ <summary>The callee cleans the stack. This is the default convention for calling unmanaged functions with platform invoke.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CallingConvention.ThisCall">
+ <summary>The first parameter is the <see langword="this" /> pointer and is stored in register ECX. Other parameters are pushed on the stack. This calling convention is used to call methods on classes exported from an unmanaged DLL.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CallingConvention.Winapi">
+ <summary>This member is not actually a calling convention, but instead uses the default platform calling convention. For example, on Windows the default is <see cref="F:System.Runtime.InteropServices.CallingConvention.StdCall" /> and on Windows CE.NET it is <see cref="F:System.Runtime.InteropServices.CallingConvention.Cdecl" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ClassInterfaceAttribute">
+ <summary>Indicates the type of class interface to be generated for a class exposed to COM, if an interface is generated at all.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ClassInterfaceAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> enumeration value.</summary>
+ <param name="classInterfaceType">Describes the type of interface that is generated for a class.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ClassInterfaceAttribute.#ctor(System.Runtime.InteropServices.ClassInterfaceType)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> enumeration member.</summary>
+ <param name="classInterfaceType">One of the <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> values that describes the type of interface that is generated for a class.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ClassInterfaceAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> value that describes which type of interface should be generated for the class.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.ClassInterfaceType" /> value that describes which type of interface should be generated for the class.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ClassInterfaceType">
+ <summary>Identifies the type of class interface that is generated for a class.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch">
+ <summary>Indicates that the class only supports late binding for COM clients. A <see langword="dispinterface" /> for the class is automatically exposed to COM clients on request. The type library produced by Tlbexp.exe (Type Library Exporter) does not contain type information for the <see langword="dispinterface" /> in order to prevent clients from caching the DISPIDs of the interface. The <see langword="dispinterface" /> does not exhibit the versioning problems described in <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" /> because clients can only late-bind to the interface.
+This is the default setting for <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ClassInterfaceType.AutoDual">
+ <summary>Indicates that a dual class interface is automatically generated for the class and exposed to COM. Type information is produced for the class interface and published in the type library. Using <see langword="AutoDual" /> is strongly discouraged because of the versioning limitations described in <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ClassInterfaceType.None">
+ <summary>Indicates that no class interface is generated for the class. If no interfaces are implemented explicitly, the class can only provide late-bound access through the <see langword="IDispatch" /> interface. This is the recommended setting for <see cref="T:System.Runtime.InteropServices.ClassInterfaceAttribute" />. Using <see langword="ClassInterfaceType.None" /> is the only way to expose functionality through interfaces implemented explicitly by the class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.CoClassAttribute">
+ <summary>Specifies the class identifier of a coclass imported from a type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.CoClassAttribute.#ctor(System.Type)">
+ <summary>Initializes new instance of the <see cref="T:System.Runtime.InteropServices.CoClassAttribute" /> with the class identifier of the original coclass.</summary>
+ <param name="coClass">A <see cref="T:System.Type" /> that contains the class identifier of the original coclass.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.CoClassAttribute.CoClass">
+ <summary>Gets the class identifier of the original coclass.</summary>
+ <returns>A <see cref="T:System.Type" /> containing the class identifier of the original coclass.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComAliasNameAttribute">
+ <summary>Indicates the COM alias for a parameter or field type.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAliasNameAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComAliasNameAttribute" /> class with the alias for the attributed field or parameter.</summary>
+ <param name="alias">The alias for the field or parameter as found in the type library when it was imported.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAliasNameAttribute.Value">
+ <summary>Gets the alias for the field or parameter as found in the type library when it was imported.</summary>
+ <returns>The alias for the field or parameter as found in the type library when it was imported.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComAwareEventInfo">
+ <summary>Permits late-bound registration of an event handler.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.#ctor(System.Type,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" /> class by using the specified type and a name of the event on the type.</summary>
+ <param name="type">The type of object.</param>
+ <param name="eventName">The name of an event on <paramref name="type" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.AddEventHandler(System.Object,System.Delegate)">
+ <summary>Attaches an event handler to a COM object.</summary>
+ <param name="target">The target object that the event delegate should bind to.</param>
+ <param name="handler">The event delegate.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.Attributes">
+ <summary>Gets the attributes for this event.</summary>
+ <returns>The read-only attributes for this event.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.DeclaringType">
+ <summary>Gets the class that declares this member.</summary>
+ <returns>The <see cref="T:System.Type" /> object for the class that declares this member.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetAddMethod(System.Boolean)">
+ <summary>Gets the method that was used to add an event handler delegate to the event source.</summary>
+ <param name="nonPublic">
+ <see langword="true" /> to return non-public methods; otherwise, <see langword="false" />.</param>
+ <returns>The method that was used to add an event handler delegate to the event source.</returns>
+ <exception cref="T:System.MethodAccessException">
+ <paramref name="nonPublic" /> is <see langword="true" /> and the method used to add an event handler delegate is non-public, but the caller does not have permission to reflect on non-public methods.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetCustomAttributes(System.Boolean)">
+ <summary>When overridden in a derived class, gets an array that contains all the custom attributes that are applied to this member.</summary>
+ <param name="inherit">
+ <see langword="true" /> to search this member's inheritance chain to find the attributes; otherwise, <see langword="false" />.</param>
+ <returns>An array that contains all the custom attributes, or an array that has no elements if no attributes were defined.</returns>
+ <exception cref="T:System.InvalidOperationException">This member belongs to a type that is loaded into the reflection-only context. See How to: Load Assemblies into the Reflection-Only Context.</exception>
+ <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetCustomAttributes(System.Type,System.Boolean)">
+ <summary>When overridden in a derived class, gets an array that contains all the custom attributes of the specified type that are applied to this member.</summary>
+ <param name="attributeType">The attribute type to search for. Only attributes that are assignable to this type can be returned.</param>
+ <param name="inherit">
+ <see langword="true" /> to search this member's inheritance chain to find the attributes; otherwise, <see langword="false" />.</param>
+ <returns>An array that contains all the custom attributes of the specified type, or an array that has no elements if no attributes were defined.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="attributeType" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidOperationException">This member belongs to a type that is loaded into the reflection-only context. See How to: Load Assemblies into the Reflection-Only Context</exception>
+ <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetCustomAttributesData">
+ <summary>Returns a list of <see cref="T:System.Reflection.CustomAttributeData" /> objects for the current <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" />.</summary>
+ <returns>A generic list of <see cref="T:System.Reflection.CustomAttributeData" /> objects representing data about the attributes that have been applied to the current <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetOtherMethods(System.Boolean)">
+ <summary>Returns the public or non-public methods that have been associated with an event in metadata.</summary>
+ <param name="nonPublic">
+ <see langword="true" /> to include non-public methods; otherwise, <see langword="false" />.</param>
+ <returns>An array representing the methods that have been associated with the event in metadata. If there are no such methods, an empty array is returned.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetRaiseMethod(System.Boolean)">
+ <summary>When overridden in a derived class, returns the method that was called when the event was raised.</summary>
+ <param name="nonPublic">
+ <see langword="true" /> to return non-public methods; otherwise, <see langword="false" />.</param>
+ <returns>The object that was called when the event was raised.</returns>
+ <exception cref="T:System.MethodAccessException">
+ <paramref name="nonPublic" /> is <see langword="true" /> and the method used to add an event handler delegate is non-public, but the caller does not have permission to reflect on non-public methods.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.GetRemoveMethod(System.Boolean)">
+ <summary>When overridden in a derived class, retrieves the <see cref="T:System.Reflection.MethodInfo" /> object for removing a method of the event.</summary>
+ <param name="nonPublic">
+ <see langword="true" /> to return non-public methods; otherwise, <see langword="false" />.</param>
+ <returns>The method that was used to remove an event handler delegate from the event source.</returns>
+ <exception cref="T:System.MethodAccessException">
+ <paramref name="nonPublic" /> is <see langword="true" /> and the method used to add an event handler delegate is non-public, but the caller does not have permission to reflect on non-public methods.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.IsDefined(System.Type,System.Boolean)">
+ <summary>Indicates whether one or more instances of the specified attribute are applied to this member.</summary>
+ <param name="attributeType">The attribute type to search for.</param>
+ <param name="inherit">
+ <see langword="true" /> to search this member's inheritance chain to find the attributes; otherwise, <see langword="false" />.</param>
+ <returns>
+ <see langword="true" /> if the specified attribute has been applied to this member; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.MetadataToken">
+ <summary>Gets the metadata token associated with the current <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" /> object.</summary>
+ <returns>A 32-bit Integer that represents the metadata token.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.Module">
+ <summary>Gets the module associated with the current <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" /> object.</summary>
+ <returns>The module associated with the current <see cref="T:System.Runtime.InteropServices.ComAwareEventInfo" /> object.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.Name">
+ <summary>Gets the name of the current member.</summary>
+ <returns>The name of this member.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComAwareEventInfo.ReflectedType">
+ <summary>Gets the class object that was used to initialize this instance.</summary>
+ <returns>The <see cref="T:System.Type" /> object that was used to initialize the current object.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComAwareEventInfo.RemoveEventHandler(System.Object,System.Delegate)">
+ <summary>Detaches an event handler from a COM object.</summary>
+ <param name="target">The target object that the event delegate is bound to.</param>
+ <param name="handler">The event delegate.</param>
+ <exception cref="T:System.InvalidOperationException">The event does not have a public <see langword="remove" /> accessor.</exception>
+ <exception cref="T:System.ArgumentException">The handler that was passed in cannot be used.</exception>
+ <exception cref="T:System.Reflection.TargetException">In the .NET for Windows Store apps or the Portable Class Library, catch <see cref="T:System.Exception" /> instead.
+
+
+
+
+ The <paramref name="target" /> parameter is <see langword="null" /> and the event is not static.
+
+ -or-
+
+ The <see cref="T:System.Reflection.EventInfo" /> is not declared on the target.</exception>
+ <exception cref="T:System.MethodAccessException">In the .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.MemberAccessException" />, instead.
+
+
+
+
+ The caller does not have access permission to the member.</exception>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComCompatibleVersionAttribute">
+ <summary>Indicates to a COM client that all classes in the current version of an assembly are compatible with classes in an earlier version of the assembly.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComCompatibleVersionAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComCompatibleVersionAttribute" /> class with the major version, minor version, build, and revision numbers of the assembly.</summary>
+ <param name="major">The major version number of the assembly.</param>
+ <param name="minor">The minor version number of the assembly.</param>
+ <param name="build">The build number of the assembly.</param>
+ <param name="revision">The revision number of the assembly.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.BuildNumber">
+ <summary>Gets the build number of the assembly.</summary>
+ <returns>The build number of the assembly.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.MajorVersion">
+ <summary>Gets the major version number of the assembly.</summary>
+ <returns>The major version number of the assembly.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.MinorVersion">
+ <summary>Gets the minor version number of the assembly.</summary>
+ <returns>The minor version number of the assembly.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComCompatibleVersionAttribute.RevisionNumber">
+ <summary>Gets the revision number of the assembly.</summary>
+ <returns>The revision number of the assembly.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComConversionLossAttribute">
+ <summary>Indicates that information was lost about a class or interface when it was imported from a type library to an assembly.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComConversionLossAttribute.#ctor">
+ <summary>Initializes a new instance of the <see langword="ComConversionLossAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute">
+ <summary>Specifies a default interface to expose to COM. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComDefaultInterfaceAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComDefaultInterfaceAttribute" /> class with the specified <see cref="T:System.Type" /> object as the default interface exposed to COM.</summary>
+ <param name="defaultInterface">A <see cref="T:System.Type" /> value indicating the default interface to expose to COM.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComDefaultInterfaceAttribute.Value">
+ <summary>Gets the <see cref="T:System.Type" /> object that specifies the default interface to expose to COM.</summary>
+ <returns>The <see cref="T:System.Type" /> object that specifies the default interface to expose to COM.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComEventInterfaceAttribute">
+ <summary>Identifies the source interface and the class that implements the methods of the event interface that is generated when a coclass is imported from a COM type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComEventInterfaceAttribute.#ctor(System.Type,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComEventInterfaceAttribute" /> class with the source interface and event provider class.</summary>
+ <param name="SourceInterface">A <see cref="T:System.Type" /> that contains the original source interface from the type library. COM uses this interface to call back to the managed class.</param>
+ <param name="EventProvider">A <see cref="T:System.Type" /> that contains the class that implements the methods of the event interface.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComEventInterfaceAttribute.EventProvider">
+ <summary>Gets the class that implements the methods of the event interface.</summary>
+ <returns>A <see cref="T:System.Type" /> that contains the class that implements the methods of the event interface.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComEventInterfaceAttribute.SourceInterface">
+ <summary>Gets the original source interface from the type library.</summary>
+ <returns>A <see cref="T:System.Type" /> containing the source interface.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComEventsHelper">
+ <summary>Provides methods that enable .NET Framework delegates that handle events to be added and removed from COM objects.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComEventsHelper.Combine(System.Object,System.Guid,System.Int32,System.Delegate)">
+ <summary>Adds a delegate to the invocation list of events originating from a COM object.</summary>
+ <param name="rcw">The COM object that triggers the events the caller would like to respond to.</param>
+ <param name="iid">The identifier of the source interface used by the COM object to trigger events.</param>
+ <param name="dispid">The dispatch identifier of the method on the source interface.</param>
+ <param name="d">The delegate to invoke when the COM event is fired.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComEventsHelper.Remove(System.Object,System.Guid,System.Int32,System.Delegate)">
+ <summary>Removes a delegate from the invocation list of events originating from a COM object.</summary>
+ <param name="rcw">The COM object the delegate is attached to.</param>
+ <param name="iid">The identifier of the source interface used by the COM object to trigger events.</param>
+ <param name="dispid">The dispatch identifier of the method on the source interface.</param>
+ <param name="d">The delegate to remove from the invocation list.</param>
+ <returns>The delegate that was removed from the invocation list.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.COMException">
+ <summary>The exception that is thrown when an unrecognized HRESULT is returned from a COM method call.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with default values.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class from serialization data.</summary>
+ <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data.</param>
+ <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that supplies the contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.#ctor(System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.COMException" /> class with a specified message and error code.</summary>
+ <param name="message">The message that indicates the reason the exception occurred.</param>
+ <param name="errorCode">The error code (HRESULT) value associated with this exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.COMException.ToString">
+ <summary>Converts the contents of the exception to a string.</summary>
+ <returns>A string containing the <see cref="P:System.Exception.HResult" />, <see cref="P:System.Exception.Message" />, <see cref="P:System.Exception.InnerException" />, and <see cref="P:System.Exception.StackTrace" /> properties of the exception.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComImportAttribute">
+ <summary>Indicates that the attributed type was previously defined in COM.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComImportAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComInterfaceType">
+ <summary>Identifies how to expose an interface to COM.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual">
+ <summary>Indicates that the interface is exposed to COM as a dual interface, which enables both early and late binding. <see cref="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsDual" /> is the default value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIDispatch">
+ <summary>Indicates that an interface is exposed to COM as a dispinterface, which enables late binding only.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIInspectable">
+ <summary>Indicates that an interface is exposed to COM as a Windows Runtime interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown">
+ <summary>Indicates that an interface is exposed to COM as an interface that is derived from IUnknown, which enables only early binding.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComMemberType">
+ <summary>Describes the type of a COM member.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComMemberType.Method">
+ <summary>The member is a normal method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComMemberType.PropGet">
+ <summary>The member gets properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComMemberType.PropSet">
+ <summary>The member sets properties.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute">
+ <summary>Specifies the method to call when you register an assembly for use from COM; this enables the execution of user-written code during the registration process.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComRegisterFunctionAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComRegisterFunctionAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute">
+ <summary>Identifies a list of interfaces that are exposed as COM event sources for the attributed class.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the name of the event source interface.</summary>
+ <param name="sourceInterfaces">A null-delimited list of fully qualified event source interface names.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the type to use as a source interface.</summary>
+ <param name="sourceInterface">The <see cref="T:System.Type" /> of the source interface.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the types to use as source interfaces.</summary>
+ <param name="sourceInterface1">The <see cref="T:System.Type" /> of the default source interface.</param>
+ <param name="sourceInterface2">The <see cref="T:System.Type" /> of a source interface.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type,System.Type)">
+ <summary>Initializes a new instance of the <see langword="ComSourceInterfacesAttribute" /> class with the types to use as source interfaces.</summary>
+ <param name="sourceInterface1">The <see cref="T:System.Type" /> of the default source interface.</param>
+ <param name="sourceInterface2">The <see cref="T:System.Type" /> of a source interface.</param>
+ <param name="sourceInterface3">The <see cref="T:System.Type" /> of a source interface.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComSourceInterfacesAttribute.#ctor(System.Type,System.Type,System.Type,System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComSourceInterfacesAttribute" /> class with the types to use as source interfaces.</summary>
+ <param name="sourceInterface1">The <see cref="T:System.Type" /> of the default source interface.</param>
+ <param name="sourceInterface2">The <see cref="T:System.Type" /> of a source interface.</param>
+ <param name="sourceInterface3">The <see cref="T:System.Type" /> of a source interface.</param>
+ <param name="sourceInterface4">The <see cref="T:System.Type" /> of a source interface.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ComSourceInterfacesAttribute.Value">
+ <summary>Gets the fully qualified name of the event source interface.</summary>
+ <returns>The fully qualified name of the event source interface.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ADVF">
+ <summary>Specifies the requested behavior when setting up an advise sink or a caching connection with an object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVF_DATAONSTOP">
+ <summary>For data advisory connections, assures accessibility to data.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVF_NODATA">
+ <summary>For data advisory connections (<see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)" /> or <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" />), this flag requests the data object not to send data when it calls <see cref="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnDataChange(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVF_ONLYONCE">
+ <summary>Requests that the object make only one change notification or cache update before deleting the connection.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVF_PRIMEFIRST">
+ <summary>Requests that the object not wait for the data or view to change before making an initial call to <see cref="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnDataChange(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> (for data or view advisory connections) or updating the cache (for cache connections).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVFCACHE_FORCEBUILTIN">
+ <summary>This value is used by DLL object applications and object handlers that perform the drawing of their objects.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVFCACHE_NOHANDLER">
+ <summary>Synonym for <see cref="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVFCACHE_FORCEBUILTIN" />, which is used more often.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ADVF.ADVFCACHE_ONSAVE">
+ <summary>For cache connections, this flag updates the cached representation only when the object containing the cache is saved.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.BIND_OPTS">
+ <summary>Stores the parameters that are used during a moniker binding operation.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.cbStruct">
+ <summary>Specifies the size, in bytes, of the <see langword="BIND_OPTS" /> structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.dwTickCountDeadline">
+ <summary>Indicates the amount of time (clock time in milliseconds, as returned by the <see langword="GetTickCount" /> function) that the caller specified to complete the binding operation.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.grfFlags">
+ <summary>Controls aspects of moniker binding operations.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BIND_OPTS.grfMode">
+ <summary>Represents flags that should be used when opening the file that contains the object identified by the moniker.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.BINDPTR">
+ <summary>Contains a pointer to a bound-to <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure, <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure, or an <see langword="ITypeComp" /> interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lpfuncdesc">
+ <summary>Represents a pointer to a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lptcomp">
+ <summary>Represents a pointer to an <see cref="T:System.Runtime.InteropServices.ComTypes.ITypeComp" /> interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.BINDPTR.lpvardesc">
+ <summary>Represents a pointer to a <see cref="T:System.Runtime.InteropServices.VARDESC" /> structure.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.CALLCONV">
+ <summary>Identifies the calling convention used by a method described in a METHODDATA structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_CDECL">
+ <summary>Indicates that the C declaration (CDECL) calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MACPASCAL">
+ <summary>Indicates that the Macintosh Pascal (MACPASCAL) calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MAX">
+ <summary>Indicates the end of the <see cref="T:System.Runtime.InteropServices.ComTypes.CALLCONV" /> enumeration.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MPWCDECL">
+ <summary>Indicates that the Macintosh Programmers' Workbench (MPW) CDECL calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MPWPASCAL">
+ <summary>Indicates that the Macintosh Programmers' Workbench (MPW) PASCAL calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_MSCPASCAL">
+ <summary>Indicates that the MSC Pascal (MSCPASCAL) calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_PASCAL">
+ <summary>Indicates that the Pascal calling convention is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_RESERVED">
+ <summary>This value is reserved for future use.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_STDCALL">
+ <summary>Indicates that the standard calling convention (STDCALL) is used for a method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CALLCONV.CC_SYSCALL">
+ <summary>Indicates that the standard SYSCALL calling convention is used for a method.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.CONNECTDATA">
+ <summary>Describes a connection that exists to a given connection point.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CONNECTDATA.dwCookie">
+ <summary>Represents a connection token that is returned from a call to <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.CONNECTDATA.pUnk">
+ <summary>Represents a pointer to the <see langword="IUnknown" /> interface on a connected advisory sink. The caller must call <see langword="IUnknown::Release" /> on this pointer when the <see langword="CONNECTDATA" /> structure is no longer needed.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.DATADIR">
+ <summary>Specifies the direction of the data flow in the <paramref name="dwDirection" /> parameter of the <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)" /> method. This determines the formats that the resulting enumerator can enumerate.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DATADIR.DATADIR_GET">
+ <summary>Requests that <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)" /> supply an enumerator for the formats that can be specified in <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DATADIR.DATADIR_SET">
+ <summary>Requests that <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)" /> supply an enumerator for the formats that can be specified in <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.DESCKIND">
+ <summary>Identifies the type description being bound to.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_FUNCDESC">
+ <summary>Indicates that a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure was returned.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_IMPLICITAPPOBJ">
+ <summary>Indicates that an <see langword="IMPLICITAPPOBJ" /> was returned.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_MAX">
+ <summary>Indicates an end-of-enumeration marker.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_NONE">
+ <summary>Indicates that no match was found.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_TYPECOMP">
+ <summary>Indicates that a <see langword="TYPECOMP" /> was returned.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DESCKIND.DESCKIND_VARDESC">
+ <summary>Indicates that a <see langword="VARDESC" /> was returned.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.DISPPARAMS">
+ <summary>Contains the arguments passed to a method or property by <see langword="IDispatch::Invoke" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.cArgs">
+ <summary>Represents the count of arguments.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.cNamedArgs">
+ <summary>Represents the count of named arguments.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.rgdispidNamedArgs">
+ <summary>Represents the dispatch IDs of named arguments.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DISPPARAMS.rgvarg">
+ <summary>Represents a reference to the array of arguments.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.DVASPECT">
+ <summary>Specifies the desired data or view aspect of the object when drawing or getting data.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DVASPECT.DVASPECT_CONTENT">
+ <summary>A representation of an object that lets that object be displayed as an embedded object inside a container. This value is typically specified for compound document objects. The presentation can be provided for the screen or printer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DVASPECT.DVASPECT_DOCPRINT">
+ <summary>A representation of an object on the screen as though it were printed to a printer using the Print command from the File menu. The described data may represent a sequence of pages.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DVASPECT.DVASPECT_ICON">
+ <summary>An iconic representation of an object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.DVASPECT.DVASPECT_THUMBNAIL">
+ <summary>A thumbnail representation of an object that lets that object be displayed in a browsing tool. The thumbnail is approximately a 120 by 120 pixel, 16-color (recommended), device-independent bitmap potentially wrapped in a metafile.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ELEMDESC">
+ <summary>Contains the type description and process transfer information for a variable, function, or a function parameter.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.desc">
+ <summary>Contains information about an element.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION">
+ <summary>Contains information about an element.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION.idldesc">
+ <summary>Contains information for remoting the element.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.DESCUNION.paramdesc">
+ <summary>Contains information about the parameter.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.ELEMDESC.tdesc">
+ <summary>Identifies the type of the element.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.EXCEPINFO">
+ <summary>Describes the exceptions that occur during <see langword="IDispatch::Invoke" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrDescription">
+ <summary>Describes the error intended for the customer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrHelpFile">
+ <summary>Contains the fully-qualified drive, path, and file name of a Help file that contains more information about the error.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.bstrSource">
+ <summary>Indicates the name of the source of the exception. Typically, this is an application name.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.dwHelpContext">
+ <summary>Indicates the Help context ID of the topic within the Help file.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.pfnDeferredFillIn">
+ <summary>Represents a pointer to a function that takes an <see cref="T:System.Runtime.InteropServices.EXCEPINFO" /> structure as an argument and returns an HRESULT value. If deferred fill-in is not desired, this field is set to <see langword="null" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.pvReserved">
+ <summary>This field is reserved; it must be set to <see langword="null" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.scode">
+ <summary>A return value describing the error.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.wCode">
+ <summary>Represents an error code identifying the error.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.EXCEPINFO.wReserved">
+ <summary>This field is reserved; it must be set to 0.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.FILETIME">
+ <summary>Represents the number of 100-nanosecond intervals since January 1, 1601. This structure is a 64-bit value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FILETIME.dwHighDateTime">
+ <summary>Specifies the high 32 bits of the <see langword="FILETIME" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FILETIME.dwLowDateTime">
+ <summary>Specifies the low 32 bits of the <see langword="FILETIME" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.FORMATETC">
+ <summary>Represents a generalized Clipboard format.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FORMATETC.cfFormat">
+ <summary>Specifies the particular clipboard format of interest.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FORMATETC.dwAspect">
+ <summary>Specifies one of the <see cref="T:System.Runtime.InteropServices.ComTypes.DVASPECT" /> enumeration constants that indicates how much detail should be contained in the rendering.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex">
+ <summary>Specifies part of the aspect when the data must be split across page boundaries.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FORMATETC.ptd">
+ <summary>Specifies a pointer to a <see langword="DVTARGETDEVICE" /> structure containing information about the target device that the data is being composed for.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FORMATETC.tymed">
+ <summary>Specifies one of the <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> enumeration constants, which indicates the type of storage medium used to transfer the object's data.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.FUNCDESC">
+ <summary>Defines a function description.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.callconv">
+ <summary>Specifies the calling convention of a function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cParams">
+ <summary>Counts the total number of parameters.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cParamsOpt">
+ <summary>Counts the optional parameters.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.cScodes">
+ <summary>Counts the permitted return values.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.elemdescFunc">
+ <summary>Contains the return type of the function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.funckind">
+ <summary>Specifies whether the function is virtual, static, or dispatch-only.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.invkind">
+ <summary>Specifies the type of a property function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.lprgelemdescParam">
+ <summary>Indicates the size of <see cref="F:System.Runtime.InteropServices.FUNCDESC.cParams" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.lprgscode">
+ <summary>Stores the count of errors a function can return on a 16-bit system.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.memid">
+ <summary>Identifies the function member ID.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.oVft">
+ <summary>Specifies the offset in the VTBL for <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_VIRTUAL" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCDESC.wFuncFlags">
+ <summary>Indicates the <see cref="T:System.Runtime.InteropServices.FUNCFLAGS" /> of a function.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.FUNCFLAGS">
+ <summary>Identifies the constants that define the properties of a function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FBINDABLE">
+ <summary>The function that supports data binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDEFAULTBIND">
+ <summary>The function that best represents the object. Only one function in a type can have this attribute.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDEFAULTCOLLELEM">
+ <summary>Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found, and is flagged as an accessor function for an element of the default collection, a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FDISPLAYBIND">
+ <summary>The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.FUNCFLAGS.FUNCFLAG_FBINDABLE" /> must also be set.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FHIDDEN">
+ <summary>The function should not be displayed to the user, although it exists and is bindable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FIMMEDIATEBIND">
+ <summary>Mapped as individual bindable properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FNONBROWSABLE">
+ <summary>The property appears in an object browser, but not in a properties browser.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FREPLACEABLE">
+ <summary>Tags the interface as having default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FREQUESTEDIT">
+ <summary>When set, any call to a method that sets the property results first in a call to <see langword="IPropertyNotifySink::OnRequestEdit" />. The implementation of <see langword="OnRequestEdit" /> determines if the call is allowed to set the property.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FRESTRICTED">
+ <summary>The function should not be accessible from macro languages. This flag is intended for system-level functions or functions that type browsers should not display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FSOURCE">
+ <summary>The function returns an object that is a source of events.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FUIDEFAULT">
+ <summary>The type information member is the default member for display in the user interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCFLAGS.FUNCFLAG_FUSESGETLASTERROR">
+ <summary>The function supports <see langword="GetLastError" />. If an error occurs during the function, the caller can call <see langword="GetLastError" /> to retrieve the error code.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.FUNCKIND">
+ <summary>Defines how to access a function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_DISPATCH">
+ <summary>The function can be accessed only through <see langword="IDispatch" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_NONVIRTUAL">
+ <summary>The function is accessed by <see langword="static" /> address and takes an implicit <see langword="this" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_PUREVIRTUAL">
+ <summary>The function is accessed through the virtual function table (VTBL), and takes an implicit <see langword="this" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_STATIC">
+ <summary>The function is accessed by <see langword="static" /> address and does not take an implicit <see langword="this" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.FUNCKIND.FUNC_VIRTUAL">
+ <summary>The function is accessed in the same way as <see cref="F:System.Runtime.InteropServices.FUNCKIND.FUNC_PUREVIRTUAL" />, except the function has an implementation.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IAdviseSink">
+ <summary>Provides a managed definition of the <see langword="IAdviseSink" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnClose">
+ <summary>Notifies all registered advisory sinks that the object has changed from the running state to the loaded state. This method is called by a server.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnDataChange(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)">
+ <summary>Notifies all data objects currently registered advisory sinks that data in the object has changed.</summary>
+ <param name="format">A <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" />, passed by reference, which describes the format, target device, rendering, and storage information of the calling data object.</param>
+ <param name="stgmedium">A <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" />, passed by reference, which defines the storage medium (global memory, disk file, storage object, stream object, Graphics Device Interface (GDI) object, or undefined) and ownership of that medium for the calling data object.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnRename(System.Runtime.InteropServices.ComTypes.IMoniker)">
+ <summary>Notifies all registered advisory sinks that the object has been renamed. This method is called by a server.</summary>
+ <param name="moniker">A pointer to the <see langword="IMoniker" /> interface on the new full moniker of the object.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnSave">
+ <summary>Notifies all registered advisory sinks that the object has been saved. This method is called by a server.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IAdviseSink.OnViewChange(System.Int32,System.Int32)">
+ <summary>Notifies an object's registered advisory sinks that its view has changed. This method is called by a server.</summary>
+ <param name="aspect">The aspect, or view, of the object. Contains a value taken from the <see cref="T:System.Runtime.InteropServices.ComTypes.DVASPECT" /> enumeration.</param>
+ <param name="index">The portion of the view that has changed. Currently, only -1 is valid.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IBindCtx">
+ <summary>Provides the managed definition of the <see langword="IBindCtx" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.EnumObjectParam(System.Runtime.InteropServices.ComTypes.IEnumString@)">
+ <summary>Enumerates the strings that are the keys of the internally maintained table of contextual object parameters.</summary>
+ <param name="ppenum">When this method returns, contains a reference to the object parameter enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetBindOptions(System.Runtime.InteropServices.ComTypes.BIND_OPTS@)">
+ <summary>Returns the current binding options stored in the current bind context.</summary>
+ <param name="pbindopts">A pointer to the structure to receive the binding options.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetObjectParam(System.String,System.Object@)">
+ <summary>Looks up the given key in the internally maintained table of contextual object parameters and returns the corresponding object, if one exists.</summary>
+ <param name="pszKey">The name of the object to search for.</param>
+ <param name="ppunk">When this method returns, contains the object interface pointer. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.GetRunningObjectTable(System.Runtime.InteropServices.ComTypes.IRunningObjectTable@)">
+ <summary>Returns access to the Running Object Table (ROT) relevant to this binding process.</summary>
+ <param name="pprot">When this method returns, contains a reference to the Running Object Table (ROT). This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectBound(System.Object)">
+ <summary>Registers the passed object as one of the objects that has been bound during a moniker operation and that should be released when the operation is complete.</summary>
+ <param name="punk">The object to register for release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectParam(System.String,System.Object)">
+ <summary>Registers the specified object pointer under the specified name in the internally maintained table of object pointers.</summary>
+ <param name="pszKey">The name to register <paramref name="punk" /> with.</param>
+ <param name="punk">The object to register.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.ReleaseBoundObjects">
+ <summary>Releases all the objects currently registered with the bind context by using the <see cref="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RegisterObjectBound(System.Object)" /> method.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RevokeObjectBound(System.Object)">
+ <summary>Removes the object from the set of registered objects that need to be released.</summary>
+ <param name="punk">The object to unregister for release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.RevokeObjectParam(System.String)">
+ <summary>Revokes the registration of the object currently found under the specified key in the internally maintained table of contextual object parameters, if that key is currently registered.</summary>
+ <param name="pszKey">The key to unregister.</param>
+ <returns>An <see langword="S_OK" /><see langword="HRESULT" /> value if the specified key was successfully removed from the table; otherwise, an <see langword="S_FALSE" /><see langword="HRESULT" /> value.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IBindCtx.SetBindOptions(System.Runtime.InteropServices.ComTypes.BIND_OPTS@)">
+ <summary>Stores a block of parameters in the bind context. These parameters will apply to later <see langword="UCOMIMoniker" /> operations that use this bind context.</summary>
+ <param name="pbindopts">The structure containing the binding options to set.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IConnectionPoint">
+ <summary>Provides the managed definition of the <see langword="IConnectionPoint" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)">
+ <summary>Establishes an advisory connection between the connection point and the caller's sink object.</summary>
+ <param name="pUnkSink">A reference to the sink to receive calls for the outgoing interface managed by this connection point.</param>
+ <param name="pdwCookie">When this method returns, contains the connection cookie. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.EnumConnections(System.Runtime.InteropServices.ComTypes.IEnumConnections@)">
+ <summary>Creates an enumerator object for iteration through the connections that exist to this connection point.</summary>
+ <param name="ppEnum">When this method returns, contains the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.GetConnectionInterface(System.Guid@)">
+ <summary>Returns the IID of the outgoing interface managed by this connection point.</summary>
+ <param name="pIID">When this parameter returns, contains the IID of the outgoing interface managed by this connection point. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.GetConnectionPointContainer(System.Runtime.InteropServices.ComTypes.IConnectionPointContainer@)">
+ <summary>Retrieves the <see langword="IConnectionPointContainer" /> interface pointer to the connectable object that conceptually owns this connection point.</summary>
+ <param name="ppCPC">When this parameter returns, contains the connectable object's <see langword="IConnectionPointContainer" /> interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Unadvise(System.Int32)">
+ <summary>Terminates an advisory connection previously established through the <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" /> method.</summary>
+ <param name="dwCookie">The connection cookie previously returned from the <see cref="M:System.Runtime.InteropServices.ComTypes.IConnectionPoint.Advise(System.Object,System.Int32@)" /> method.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer">
+ <summary>Provides the managed definition of the <see langword="IConnectionPointContainer" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer.EnumConnectionPoints(System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints@)">
+ <summary>Creates an enumerator of all the connection points supported in the connectable object, one connection point per IID.</summary>
+ <param name="ppEnum">When this method returns, contains the interface pointer of the enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IConnectionPointContainer.FindConnectionPoint(System.Guid@,System.Runtime.InteropServices.ComTypes.IConnectionPoint@)">
+ <summary>Asks the connectable object if it has a connection point for a particular IID, and if so, returns the <see langword="IConnectionPoint" /> interface pointer to that connection point.</summary>
+ <param name="riid">A reference to the outgoing interface IID whose connection point is being requested.</param>
+ <param name="ppCP">When this method returns, contains the connection point that manages the outgoing interface <paramref name="riid" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IDataObject">
+ <summary>Provides the managed definition of the <see langword="IDataObject" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)">
+ <summary>Creates a connection between a data object and an advisory sink. This method is called by an object that supports an advisory sink and enables the advisory sink to be notified of changes in the object's data.</summary>
+ <param name="pFormatetc">A <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, target device, aspect, and medium that will be used for future notifications.</param>
+ <param name="advf">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.ADVF" /> values that specifies a group of flags for controlling the advisory connection.</param>
+ <param name="adviseSink">A pointer to the <see cref="T:System.Runtime.InteropServices.ComTypes.IAdviseSink" /> interface on the advisory sink that will receive the change notification.</param>
+ <param name="connection">When this method returns, contains a pointer to a DWORD token that identifies this connection. You can use this token later to delete the advisory connection by passing it to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.DUnadvise(System.Int32)" />. If this value is zero, the connection was not established. This parameter is passed uninitialized.</param>
+ <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:
+ Value
+
+ Description
+
+ S_OK
+
+ The advisory connection was created.
+
+ E_NOTIMPL
+
+ This method is not implemented on the data object.
+
+ DV_E_LINDEX
+
+ There is an invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.
+
+ DV_E_FORMATETC
+
+ There is an invalid value for the <paramref name="pFormatetc" /> parameter.
+
+ OLE_E_ADVISENOTSUPPORTED
+
+ The data object does not support change notification.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.DUnadvise(System.Int32)">
+ <summary>Destroys a notification connection that had been previously established.</summary>
+ <param name="connection">A DWORD token that specifies the connection to remove. Use the value returned by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.DAdvise(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.ADVF,System.Runtime.InteropServices.ComTypes.IAdviseSink,System.Int32@)" /> when the connection was originally established.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.EnumDAdvise(System.Runtime.InteropServices.ComTypes.IEnumSTATDATA@)">
+ <summary>Creates an object that can be used to enumerate the current advisory connections.</summary>
+ <param name="enumAdvise">When this method returns, contains an <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA" /> that receives the interface pointer to the new enumerator object. If the implementation sets <paramref name="enumAdvise" /> to <see langword="null" />, there are no connections to advisory sinks at this time. This parameter is passed uninitialized.</param>
+ <returns>This method supports the standard return value E_OUTOFMEMORY, as well as the following:
+ Value
+
+ Description
+
+ S_OK
+
+ The enumerator object is successfully instantiated or there are no connections.
+
+ OLE_E_ADVISENOTSUPPORTED
+
+ This object does not support advisory notifications.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(System.Runtime.InteropServices.ComTypes.DATADIR)">
+ <summary>Creates an object for enumerating the <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures for a data object. These structures are used in calls to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> or <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)" />.</summary>
+ <param name="direction">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.DATADIR" /> values that specifies the direction of the data.</param>
+ <returns>This method supports the standard return values E_INVALIDARG and E_OUTOFMEMORY, as well as the following:
+ Value
+
+ Description
+
+ S_OK
+
+ The enumerator object was successfully created.
+
+ E_NOTIMPL
+
+ The direction specified by the <paramref name="direction" /> parameter is not supported.
+
+ OLE_S_USEREG
+
+ Requests that OLE enumerate the formats from the registry.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.FORMATETC@)">
+ <summary>Provides a standard <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure that is logically equivalent to a more complex structure. Use this method to determine whether two different <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures would return the same data, removing the need for duplicate rendering.</summary>
+ <param name="formatIn">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device that the caller would like to use to retrieve data in a subsequent call such as <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. The <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> member is not significant in this case and should be ignored.</param>
+ <param name="formatOut">When this method returns, contains a pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure that contains the most general information possible for a specific rendering, making it canonically equivalent to <c>formatetcIn</c>. The caller must allocate this structure and the <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetCanonicalFormatEtc(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.FORMATETC@)" /> method must fill in the data. To retrieve data in a subsequent call such as <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />, the caller uses the supplied value of <paramref name="formatOut" />, unless the value supplied is <see langword="null" />. This value is <see langword="null" /> if the method returns <see langword="DATA_S_SAMEFORMATETC" />. The <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> member is not significant in this case and should be ignored. This parameter is passed uninitialized.</param>
+ <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:
+ Value
+
+ Description
+
+ S_OK
+
+ The returned <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure is different from the one that was passed.
+
+ DATA_S_SAMEFORMATETC
+
+ The <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structures are the same and <see langword="null" /> is returned in the <paramref name="formatOut" /> parameter.
+
+ DV_E_LINDEX
+
+ There is an invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.
+
+ DV_E_FORMATETC
+
+ There is an invalid value for the <paramref name="pFormatetc" /> parameter.
+
+ OLE_E_NOTRUNNING
+
+ The application is not running.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)">
+ <summary>Obtains data from a source data object. The <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> method, which is called by a data consumer, renders the data described in the specified <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure and transfers it through the specified <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure. The caller then assumes responsibility for releasing the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure.</summary>
+ <param name="format">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use when passing the data. It is possible to specify more than one medium by using the Boolean OR operator, allowing the method to choose the best medium among those specified.</param>
+ <param name="medium">When this method returns, contains a pointer to the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure that indicates the storage medium containing the returned data through its <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.tymed" /> member, and the responsibility for releasing the medium through the value of its <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member. If <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> is <see langword="null" />, the receiver of the medium is responsible for releasing it; otherwise, <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> points to the <see langword="IUnknown" /> interface on the appropriate object so its <see langword="Release" /> method can be called. The medium must be allocated and filled in by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetDataHere(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)">
+ <summary>Obtains data from a source data object. This method, which is called by a data consumer, differs from the <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> method in that the caller must allocate and free the specified storage medium.</summary>
+ <param name="format">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use when passing the data. Only one medium can be specified in <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" />, and only the following <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> values are valid: <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTORAGE" />, <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTREAM" />, <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_HGLOBAL" />, or <see cref="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_FILE" />.</param>
+ <param name="medium">A <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" />, passed by reference, that defines the storage medium containing the data being transferred. The medium must be allocated by the caller and filled in by <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetDataHere(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" />. The caller must also free the medium. The implementation of this method must always supply a value of <see langword="null" /> for the <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member of the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure that this parameter points to.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.QueryGetData(System.Runtime.InteropServices.ComTypes.FORMATETC@)">
+ <summary>Determines whether the data object is capable of rendering the data described in the <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure. Objects attempting a paste or drop operation can call this method before calling <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> to get an indication of whether the operation may be successful.</summary>
+ <param name="format">A pointer to a <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format, medium, and target device to use for the query.</param>
+ <returns>This method supports the standard return values E_INVALIDARG, E_UNEXPECTED, and E_OUTOFMEMORY, as well as the following:
+ Value
+
+ Description
+
+ S_OK
+
+ A subsequent call to <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.GetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@)" /> would probably be successful.
+
+ DV_E_LINDEX
+
+ An invalid value for <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.lindex" />; currently, only -1 is supported.
+
+ DV_E_FORMATETC
+
+ An invalid value for the <paramref name="pFormatetc" /> parameter.
+
+ DV_E_TYMED
+
+ An invalid <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.tymed" /> value.
+
+ DV_E_DVASPECT
+
+ An invalid <see cref="F:System.Runtime.InteropServices.ComTypes.FORMATETC.dwAspect" /> value.
+
+ OLE_E_NOTRUNNING
+
+ The application is not running.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)">
+ <summary>Transfers data to the object that implements this method. This method is called by an object that contains a data source.</summary>
+ <param name="formatIn">A <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure, passed by reference, that defines the format used by the data object when interpreting the data contained in the storage medium.</param>
+ <param name="medium">A <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /> structure, passed by reference, that defines the storage medium in which the data is being passed.</param>
+ <param name="release">
+ <see langword="true" /> to specify that the data object called, which implements <see cref="M:System.Runtime.InteropServices.ComTypes.IDataObject.SetData(System.Runtime.InteropServices.ComTypes.FORMATETC@,System.Runtime.InteropServices.ComTypes.STGMEDIUM@,System.Boolean)" />, owns the storage medium after the call returns. This means that the data object must free the medium after it has been used by calling the <see langword="ReleaseStgMedium" /> function. <see langword="false" /> to specify that the caller retains ownership of the storage medium, and the data object called uses the storage medium for the duration of the call only.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IDLDESC">
+ <summary>Contains information needed for transferring a structure element, parameter, or function return value between processes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLDESC.dwReserved">
+ <summary>Reserved; set to <see langword="null" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLDESC.wIDLFlags">
+ <summary>Indicates an <see cref="T:System.Runtime.InteropServices.IDLFLAG" /> value describing the type.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IDLFLAG">
+ <summary>Describes how to transfer a structure element, parameter, or function return value between processes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FIN">
+ <summary>The parameter passes information from the caller to the callee.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FLCID">
+ <summary>The parameter is the local identifier of a client application.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FOUT">
+ <summary>The parameter returns information from the callee to the caller.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_FRETVAL">
+ <summary>The parameter is the return value of the member.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IDLFLAG.IDLFLAG_NONE">
+ <summary>Does not specify whether the parameter passes or receives information.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints">
+ <summary>Manages the definition of the <see langword="IEnumConnectionPoints" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Clone(System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
+ <param name="ppenum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Next(System.Int32,System.Runtime.InteropServices.ComTypes.IConnectionPoint[],System.IntPtr)">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of <see langword="IConnectionPoint" /> references to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="rgelt" />.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnectionPoints.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumConnections">
+ <summary>Manages the definition of the <see langword="IEnumConnections" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Clone(System.Runtime.InteropServices.ComTypes.IEnumConnections@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
+ <param name="ppenum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Next(System.Int32,System.Runtime.InteropServices.ComTypes.CONNECTDATA[],System.IntPtr)">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of <see cref="T:System.Runtime.InteropServices.CONNECTDATA" /> structures to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated connections. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of connections enumerated in <paramref name="rgelt" />.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumConnections.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumFORMATETC">
+ <summary>Provides the managed definition of the <see langword="IEnumFORMATETC" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumFORMATETC.Clone(System.Runtime.InteropServices.ComTypes.IEnumFORMATETC@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current enumerator.</summary>
+ <param name="newEnum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumFORMATETC.Next(System.Int32,System.Runtime.InteropServices.ComTypes.FORMATETC[],System.Int32[])">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> references to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> references. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of references enumerated in <paramref name="rgelt" />. This parameter is passed uninitialized.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumFORMATETC.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ <returns>An HRESULT with the value <see langword="S_OK" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumFORMATETC.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumMoniker">
+ <summary>Manages the definition of the <see langword="IEnumMoniker" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Clone(System.Runtime.InteropServices.ComTypes.IEnumMoniker@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
+ <param name="ppenum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Next(System.Int32,System.Runtime.InteropServices.ComTypes.IMoniker[],System.IntPtr)">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of monikers to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated monikers. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of monikers enumerated in <paramref name="rgelt" />.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumMoniker.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA">
+ <summary>Provides the managed definition of the <see langword="IEnumSTATDATA" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA.Clone(System.Runtime.InteropServices.ComTypes.IEnumSTATDATA@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current enumerator.</summary>
+ <param name="newEnum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA.Next(System.Int32,System.Runtime.InteropServices.ComTypes.STATDATA[],System.Int32[])">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of <see cref="T:System.Runtime.InteropServices.ComTypes.STATDATA" /> references to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated <see cref="T:System.Runtime.InteropServices.ComTypes.STATDATA" /> references. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this parameter returns, contains a reference to the actual number of references enumerated in <paramref name="rgelt" />. This parameter is passed uninitialized.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ <returns>An HRESULT with the value <see langword="S_OK" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumSTATDATA.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumString">
+ <summary>Manages the definition of the <see langword="IEnumString" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Clone(System.Runtime.InteropServices.ComTypes.IEnumString@)">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
+ <param name="ppenum">When this method returns, contains a reference to the newly created enumerator. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Next(System.Int32,System.String[],System.IntPtr)">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of strings to return in <paramref name="rgelt" />.</param>
+ <param name="rgelt">When this method returns, contains a reference to the enumerated strings. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of strings enumerated in <paramref name="rgelt" />.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumString.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IEnumVARIANT">
+ <summary>Manages the definition of the <see langword="IEnumVARIANT" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Clone">
+ <summary>Creates a new enumerator that contains the same enumeration state as the current one.</summary>
+ <returns>An <see cref="T:System.Runtime.InteropServices.ComTypes.IEnumVARIANT" /> reference to the newly created enumerator.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Next(System.Int32,System.Object[],System.IntPtr)">
+ <summary>Retrieves a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to return in <c>rgelt</c>.</param>
+ <param name="rgVar">When this method returns, contains a reference to the enumerated elements. This parameter is passed uninitialized.</param>
+ <param name="pceltFetched">When this method returns, contains a reference to the actual number of elements enumerated in <c>rgelt</c>.</param>
+ <returns>
+ <see langword="S_OK" /> if the <paramref name="pceltFetched" /> parameter equals the <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Reset">
+ <summary>Resets the enumeration sequence to the beginning.</summary>
+ <returns>An HRESULT with the value <see langword="S_OK" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IEnumVARIANT.Skip(System.Int32)">
+ <summary>Skips a specified number of items in the enumeration sequence.</summary>
+ <param name="celt">The number of elements to skip in the enumeration.</param>
+ <returns>
+ <see langword="S_OK" /> if the number of elements skipped equals <paramref name="celt" /> parameter; otherwise, <see langword="S_FALSE" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IMoniker">
+ <summary>Provides the managed definition of the <see langword="IMoniker" /> interface, with COM functionality from <see langword="IPersist" /> and <see langword="IPersistStream" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.BindToObject(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Guid@,System.Object@)">
+ <summary>Uses the moniker to bind to the object that it identifies.</summary>
+ <param name="pbc">A reference to the <see langword="IBindCtx" /> interface on the bind context object used in this binding operation.</param>
+ <param name="pmkToLeft">A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker.</param>
+ <param name="riidResult">The interface identifier (IID) of the interface that the client intends to use to communicate with the object that the moniker identifies.</param>
+ <param name="ppvResult">When this method returns, contains a reference to the interface requested by <paramref name="riidResult" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.BindToStorage(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Guid@,System.Object@)">
+ <summary>Retrieves an interface pointer to the storage that contains the object identified by the moniker.</summary>
+ <param name="pbc">A reference to the <see langword="IBindCtx" /> interface on the bind context object used during this binding operation.</param>
+ <param name="pmkToLeft">A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker.</param>
+ <param name="riid">The interface identifier (IID) of the storage interface requested.</param>
+ <param name="ppvObj">When this method returns, contains a reference to the interface requested by <paramref name="riid" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.CommonPrefixWith(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Creates a new moniker based on the common prefix that this moniker shares with another moniker.</summary>
+ <param name="pmkOther">A reference to the <see langword="IMoniker" /> interface on another moniker to compare with the current moniker for a common prefix.</param>
+ <param name="ppmkPrefix">When this method returns, contains the moniker that is the common prefix of the current moniker and <paramref name="pmkOther" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.ComposeWith(System.Runtime.InteropServices.ComTypes.IMoniker,System.Boolean,System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Combines the current moniker with another moniker, creating a new composite moniker.</summary>
+ <param name="pmkRight">A reference to the <see langword="IMoniker" /> interface on a moniker to append to the end of the current moniker.</param>
+ <param name="fOnlyIfNotGeneric">
+ <see langword="true" /> to indicate that the caller requires a nongeneric composition. The operation proceeds only if <paramref name="pmkRight" /> is a moniker class that the current moniker can combine with in some way other than forming a generic composite. <see langword="false" /> to indicate that the method can create a generic composite if necessary.</param>
+ <param name="ppmkComposite">When this method returns, contains a reference to the resulting composite moniker. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Enum(System.Boolean,System.Runtime.InteropServices.ComTypes.IEnumMoniker@)">
+ <summary>Supplies a pointer to an enumerator that can enumerate the components of a composite moniker.</summary>
+ <param name="fForward">
+ <see langword="true" /> to enumerate the monikers from left to right. <see langword="false" /> to enumerate from right to left.</param>
+ <param name="ppenumMoniker">When this method returns, contains a reference to the enumerator object for the moniker. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetClassID(System.Guid@)">
+ <summary>Retrieves the class identifier (CLSID) of an object.</summary>
+ <param name="pClassID">When this method returns, contains the CLSID. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String@)">
+ <summary>Gets the display name, which is a user-readable representation of the current moniker.</summary>
+ <param name="pbc">A reference to the bind context to use in this operation.</param>
+ <param name="pmkToLeft">A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker.</param>
+ <param name="ppszDisplayName">When this method returns, contains the display name string. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetSizeMax(System.Int64@)">
+ <summary>Returns the size, in bytes, of the stream needed to save the object.</summary>
+ <param name="pcbSize">When this method returns, contains a <see langword="long" /> value indicating the size, in bytes, of the stream needed to save this object. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.FILETIME@)">
+ <summary>Provides a number representing the time that the object identified by the current moniker was last changed.</summary>
+ <param name="pbc">A reference to the bind context to use in this binding operation.</param>
+ <param name="pmkToLeft">A reference to the moniker to the left of the current moniker, if the moniker is part of a composite moniker.</param>
+ <param name="pFileTime">When this method returns, contains the time of the last change. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Hash(System.Int32@)">
+ <summary>Calculates a 32-bit integer using the internal state of the moniker.</summary>
+ <param name="pdwHash">When this method returns, contains the hash value for this moniker. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Inverse(System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Provides a moniker that, when composed to the right of the current moniker or one of similar structure, composes to nothing.</summary>
+ <param name="ppmk">When this method returns, contains a moniker that is the inverse of the current moniker. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsDirty">
+ <summary>Checks the object for changes since it was last saved.</summary>
+ <returns>An <see langword="S_OK" /><see langword="HRESULT" /> value if the object has changed; otherwise, an <see langword="S_FALSE" /><see langword="HRESULT" /> value.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsEqual(System.Runtime.InteropServices.ComTypes.IMoniker)">
+ <summary>Compares the current moniker with a specified moniker and indicates whether they are identical.</summary>
+ <param name="pmkOtherMoniker">A reference to the moniker to use for comparison.</param>
+ <returns>An <see langword="S_OK" /><see langword="HRESULT" /> value if the monikers are identical; otherwise, an <see langword="S_FALSE" /><see langword="HRESULT" /> value.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsRunning(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker)">
+ <summary>Determines whether the object that is identified by the current moniker is currently loaded and running.</summary>
+ <param name="pbc">A reference to the bind context to use in this binding operation.</param>
+ <param name="pmkToLeft">A reference to the moniker to the left of the current moniker if the current moniker is part of a composite.</param>
+ <param name="pmkNewlyRunning">A reference to the moniker most recently added to the Running Object Table (ROT).</param>
+ <returns>An <see langword="S_OK" /><see langword="HRESULT" /> value if the moniker is running; an <see langword="S_FALSE" /><see langword="HRESULT" /> value if the moniker is not running; or an <see langword="E_UNEXPECTED" /><see langword="HRESULT" /> value.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.IsSystemMoniker(System.Int32@)">
+ <summary>Indicates whether this moniker is of one of the system-supplied moniker classes.</summary>
+ <param name="pdwMksys">When this method returns, contains a pointer to an integer that is one of the values from the <see langword="MKSYS" /> enumeration, and refers to one of the COM moniker classes. This parameter is passed uninitialized.</param>
+ <returns>An <see langword="S_OK" /><see langword="HRESULT" /> value if the moniker is a system moniker; otherwise, an <see langword="S_FALSE" /><see langword="HRESULT" /> value.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Load(System.Runtime.InteropServices.ComTypes.IStream)">
+ <summary>Initializes an object from the stream where it was previously saved.</summary>
+ <param name="pStm">The stream that the object is loaded from.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.ParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String,System.Int32@,System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Reads as many characters of the specified display name as the <see cref="M:System.Runtime.InteropServices.ComTypes.IMoniker.ParseDisplayName(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Runtime.InteropServices.ComTypes.IMoniker,System.String,System.Int32@,System.Runtime.InteropServices.ComTypes.IMoniker@)" /> understands and builds a moniker corresponding to the portion read.</summary>
+ <param name="pbc">A reference to the bind context to use in this binding operation.</param>
+ <param name="pmkToLeft">A reference to the moniker that has been built from the display name up to this point.</param>
+ <param name="pszDisplayName">A reference to the string containing the remaining display name to parse.</param>
+ <param name="pchEaten">When this method returns, contains the number of characters that were consumed in parsing <paramref name="pszDisplayName" />. This parameter is passed uninitialized.</param>
+ <param name="ppmkOut">When this method returns, contains a reference to the moniker that was built from <paramref name="pszDisplayName" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Reduce(System.Runtime.InteropServices.ComTypes.IBindCtx,System.Int32,System.Runtime.InteropServices.ComTypes.IMoniker@,System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Returns a reduced moniker, which is another moniker that refers to the same object as the current moniker but can be bound with equal or greater efficiency.</summary>
+ <param name="pbc">A reference to the <see langword="IBindCtx" /> interface on the bind context to use in this binding operation.</param>
+ <param name="dwReduceHowFar">A value that specifies how far the current moniker should be reduced.</param>
+ <param name="ppmkToLeft">A reference to the moniker to the left of the current moniker.</param>
+ <param name="ppmkReduced">When this method returns, contains a reference to the reduced form of the current moniker, which can be <see langword="null" /> if an error occurs or if the current moniker is reduced to nothing. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.RelativePathTo(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.IMoniker@)">
+ <summary>Supplies a moniker that, when appended to the current moniker (or one with a similar structure), yields the specified moniker.</summary>
+ <param name="pmkOther">A reference to the moniker to which a relative path should be taken.</param>
+ <param name="ppmkRelPath">When this method returns, contains a reference to the relative moniker. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IMoniker.Save(System.Runtime.InteropServices.ComTypes.IStream,System.Boolean)">
+ <summary>Saves an object to the specified stream.</summary>
+ <param name="pStm">The stream to which the object is saved.</param>
+ <param name="fClearDirty">
+ <see langword="true" /> to clear the modified flag after the save is complete; otherwise <see langword="false" /></param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS">
+ <summary>Defines the attributes of an implemented or inherited interface of a type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULT">
+ <summary>The interface or dispinterface represents the default for the source or sink.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FDEFAULTVTABLE">
+ <summary>Sinks receive events through the virtual function table (VTBL).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FRESTRICTED">
+ <summary>The member should not be displayed or programmable by users.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS.IMPLTYPEFLAG_FSOURCE">
+ <summary>This member of a coclass is called rather than implemented.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND">
+ <summary>Specifies how to invoke a function by <see langword="IDispatch::Invoke" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_FUNC">
+ <summary>The member is called using a normal function invocation syntax.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYGET">
+ <summary>The function is invoked using a normal property access syntax.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYPUT">
+ <summary>The function is invoked using a property value assignment syntax.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.INVOKEKIND.INVOKE_PROPERTYPUTREF">
+ <summary>The function is invoked using a property reference assignment syntax.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IPersistFile">
+ <summary>Provides the managed definition of the <see langword="IPersistFile" /> interface, with functionality from <see langword="IPersist" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.GetClassID(System.Guid@)">
+ <summary>Retrieves the class identifier (CLSID) of an object.</summary>
+ <param name="pClassID">When this method returns, contains a reference to the CLSID. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.GetCurFile(System.String@)">
+ <summary>Retrieves either the absolute path to the current working file of the object or, if there is no current working file, the default file name prompt of the object.</summary>
+ <param name="ppszFileName">When this method returns, contains the address of a pointer to a zero-terminated string containing the path for the current file, or the default file name prompt (such as *.txt). This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.IsDirty">
+ <summary>Checks an object for changes since it was last saved to its current file.</summary>
+ <returns>
+ <see langword="S_OK" /> if the file has changed since it was last saved; <see langword="S_FALSE" /> if the file has not changed since it was last saved.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.Load(System.String,System.Int32)">
+ <summary>Opens the specified file and initializes an object from the file contents.</summary>
+ <param name="pszFileName">A zero-terminated string containing the absolute path of the file to open.</param>
+ <param name="dwMode">A combination of values from the <see langword="STGM" /> enumeration to indicate the access mode in which to open <paramref name="pszFileName" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.Save(System.String,System.Boolean)">
+ <summary>Saves a copy of the object into the specified file.</summary>
+ <param name="pszFileName">A zero-terminated string containing the absolute path of the file to which the object is saved.</param>
+ <param name="fRemember">
+ <see langword="true" /> to used the <paramref name="pszFileName" /> parameter as the current working file; otherwise <see langword="false" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IPersistFile.SaveCompleted(System.String)">
+ <summary>Notifies the object that it can write to its file.</summary>
+ <param name="pszFileName">The absolute path of the file where the object was previously saved.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IRunningObjectTable">
+ <summary>Provides the managed definition of the <see langword="IRunningObjectTable" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.EnumRunning(System.Runtime.InteropServices.ComTypes.IEnumMoniker@)">
+ <summary>Enumerates the objects currently registered as running.</summary>
+ <param name="ppenumMoniker">When this method returns, contains the new enumerator for the Running Object Table (ROT). This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.GetObject(System.Runtime.InteropServices.ComTypes.IMoniker,System.Object@)">
+ <summary>Returns the registered object if the supplied object name is registered as running.</summary>
+ <param name="pmkObjectName">A reference to the moniker to search for in the Running Object Table (ROT).</param>
+ <param name="ppunkObject">When this method returns, contains the requested running object. This parameter is passed uninitialized.</param>
+ <returns>An <see langword="HRESULT" /> value that indicates the success or failure of the operation.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.GetTimeOfLastChange(System.Runtime.InteropServices.ComTypes.IMoniker,System.Runtime.InteropServices.ComTypes.FILETIME@)">
+ <summary>Searches for this moniker in the Running Object Table (ROT) and reports the recorded time of change, if present.</summary>
+ <param name="pmkObjectName">A reference to the moniker to search for in the Running Object Table (ROT).</param>
+ <param name="pfiletime">When this object returns, contains the objects last change time. This parameter is passed uninitialized.</param>
+ <returns>An <see langword="HRESULT" /> value that indicates the success or failure of the operation.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.IsRunning(System.Runtime.InteropServices.ComTypes.IMoniker)">
+ <summary>Determines whether the specified moniker is currently registered in the Running Object Table (ROT).</summary>
+ <param name="pmkObjectName">A reference to the moniker to search for in the Running Object Table (ROT).</param>
+ <returns>An <see langword="HRESULT" /> value that indicates the success or failure of the operation.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.NoteChangeTime(System.Int32,System.Runtime.InteropServices.ComTypes.FILETIME@)">
+ <summary>Notes the time that a particular object changed so <see langword="IMoniker::GetTimeOfLastChange" /> can report an appropriate change time.</summary>
+ <param name="dwRegister">The Running Object Table (ROT) entry of the changed object.</param>
+ <param name="pfiletime">A reference to the object's last change time.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.Register(System.Int32,System.Object,System.Runtime.InteropServices.ComTypes.IMoniker)">
+ <summary>Registers that the supplied object has entered the running state.</summary>
+ <param name="grfFlags">Specifies whether the Running Object Table's (ROT) reference to <paramref name="punkObject" /> is weak or strong, and controls access to the object through its entry in the ROT.</param>
+ <param name="punkObject">A reference to the object being registered as running.</param>
+ <param name="pmkObjectName">A reference to the moniker that identifies <paramref name="punkObject" />.</param>
+ <returns>A value that can be used to identify this ROT entry in subsequent calls to <see cref="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.Revoke(System.Int32)" /> or <see cref="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.NoteChangeTime(System.Int32,System.Runtime.InteropServices.ComTypes.FILETIME@)" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IRunningObjectTable.Revoke(System.Int32)">
+ <summary>Unregisters the specified object from the Running Object Table (ROT).</summary>
+ <param name="dwRegister">The Running Object Table (ROT) entry to revoke.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.IStream">
+ <summary>Provides the managed definition of the <see langword="IStream" /> interface, with <see langword="ISequentialStream" /> functionality.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Clone(System.Runtime.InteropServices.ComTypes.IStream@)">
+ <summary>Creates a new stream object with its own seek pointer that references the same bytes as the original stream.</summary>
+ <param name="ppstm">When this method returns, contains the new stream object. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Commit(System.Int32)">
+ <summary>Ensures that any changes made to a stream object that is open in transacted mode are reflected in the parent storage.</summary>
+ <param name="grfCommitFlags">A value that controls how the changes for the stream object are committed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.CopyTo(System.Runtime.InteropServices.ComTypes.IStream,System.Int64,System.IntPtr,System.IntPtr)">
+ <summary>Copies a specified number of bytes from the current seek pointer in the stream to the current seek pointer in another stream.</summary>
+ <param name="pstm">A reference to the destination stream.</param>
+ <param name="cb">The number of bytes to copy from the source stream.</param>
+ <param name="pcbRead">On successful return, contains the actual number of bytes read from the source.</param>
+ <param name="pcbWritten">On successful return, contains the actual number of bytes written to the destination.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.LockRegion(System.Int64,System.Int64,System.Int32)">
+ <summary>Restricts access to a specified range of bytes in the stream.</summary>
+ <param name="libOffset">The byte offset for the beginning of the range.</param>
+ <param name="cb">The length of the range, in bytes, to restrict.</param>
+ <param name="dwLockType">The requested restrictions on accessing the range.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Read(System.Byte[],System.Int32,System.IntPtr)">
+ <summary>Reads a specified number of bytes from the stream object into memory starting at the current seek pointer.</summary>
+ <param name="pv">When this method returns, contains the data read from the stream. This parameter is passed uninitialized.</param>
+ <param name="cb">The number of bytes to read from the stream object.</param>
+ <param name="pcbRead">A pointer to a <see langword="ULONG" /> variable that receives the actual number of bytes read from the stream object.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Revert">
+ <summary>Discards all changes that have been made to a transacted stream since the last <see cref="M:System.Runtime.InteropServices.ComTypes.IStream.Commit(System.Int32)" /> call.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Seek(System.Int64,System.Int32,System.IntPtr)">
+ <summary>Changes the seek pointer to a new location relative to the beginning of the stream, to the end of the stream, or to the current seek pointer.</summary>
+ <param name="dlibMove">The displacement to add to <paramref name="dwOrigin" />.</param>
+ <param name="dwOrigin">The origin of the seek. The origin can be the beginning of the file, the current seek pointer, or the end of the file.</param>
+ <param name="plibNewPosition">On successful return, contains the offset of the seek pointer from the beginning of the stream.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.SetSize(System.Int64)">
+ <summary>Changes the size of the stream object.</summary>
+ <param name="libNewSize">The new size of the stream as a number of bytes.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Stat(System.Runtime.InteropServices.ComTypes.STATSTG@,System.Int32)">
+ <summary>Retrieves the <see cref="T:System.Runtime.InteropServices.STATSTG" /> structure for this stream.</summary>
+ <param name="pstatstg">When this method returns, contains a <see langword="STATSTG" /> structure that describes this stream object. This parameter is passed uninitialized.</param>
+ <param name="grfStatFlag">Members in the <see langword="STATSTG" /> structure that this method does not return, thus saving some memory allocation operations.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.UnlockRegion(System.Int64,System.Int64,System.Int32)">
+ <summary>Removes the access restriction on a range of bytes previously restricted with the <see cref="M:System.Runtime.InteropServices.ComTypes.IStream.LockRegion(System.Int64,System.Int64,System.Int32)" /> method.</summary>
+ <param name="libOffset">The byte offset for the beginning of the range.</param>
+ <param name="cb">The length, in bytes, of the range to restrict.</param>
+ <param name="dwLockType">The access restrictions previously placed on the range.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.IStream.Write(System.Byte[],System.Int32,System.IntPtr)">
+ <summary>Writes a specified number of bytes into the stream object starting at the current seek pointer.</summary>
+ <param name="pv">The buffer to write this stream to.</param>
+ <param name="cb">The number of bytes to write to the stream.</param>
+ <param name="pcbWritten">On successful return, contains the actual number of bytes written to the stream object. If the caller sets this pointer to <see cref="F:System.IntPtr.Zero" />, this method does not provide the actual number of bytes written.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ITypeComp">
+ <summary>Provides the managed definition of the <see langword="ITypeComp" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeComp.Bind(System.String,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.ITypeInfo@,System.Runtime.InteropServices.ComTypes.DESCKIND@,System.Runtime.InteropServices.ComTypes.BINDPTR@)">
+ <summary>Maps a name to a member of a type, or binds global variables and functions contained in a type library.</summary>
+ <param name="szName">The name to bind.</param>
+ <param name="lHashVal">A hash value for <paramref name="szName" /> computed by <see langword="LHashValOfNameSys" />.</param>
+ <param name="wFlags">A flags word containing one or more of the invoke flags defined in the <see langword="INVOKEKIND" /> enumeration.</param>
+ <param name="ppTInfo">When this method returns, contains a reference to the type description that contains the item to which it is bound, if a <see langword="FUNCDESC" /> or <see langword="VARDESC" /> was returned. This parameter is passed uninitialized.</param>
+ <param name="pDescKind">When this method returns, contains a reference to a <see langword="DESCKIND" /> enumerator that indicates whether the name bound-to is a <see langword="VARDESC" />, <see langword="FUNCDESC" />, or <see langword="TYPECOMP" />. This parameter is passed uninitialized.</param>
+ <param name="pBindPtr">When this method returns, contains a reference to the bound-to <see langword="VARDESC" />, <see langword="FUNCDESC" />, or <see langword="ITypeComp" /> interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeComp.BindType(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@,System.Runtime.InteropServices.ComTypes.ITypeComp@)">
+ <summary>Binds to the type descriptions contained within a type library.</summary>
+ <param name="szName">The name to bind.</param>
+ <param name="lHashVal">A hash value for <paramref name="szName" /> determined by <see langword="LHashValOfNameSys" />.</param>
+ <param name="ppTInfo">When this method returns, contains a reference to an <see langword="ITypeInfo" /> of the type to which <paramref name="szName" /> was bound. This parameter is passed uninitialized.</param>
+ <param name="ppTComp">When this method returns, contains a reference to an <see langword="ITypeComp" /> variable. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ITypeInfo">
+ <summary>Provides the managed definition of the Component Automation ITypeInfo interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.AddressOfMember(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr@)">
+ <summary>Retrieves the addresses of static functions or variables, such as those defined in a DLL.</summary>
+ <param name="memid">The member ID of the <see langword="static" /> member's address to retrieve.</param>
+ <param name="invKind">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies whether the member is a property, and if so, what kind.</param>
+ <param name="ppv">When this method returns, contains a reference to the <see langword="static" /> member. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.CreateInstance(System.Object,System.Guid@,System.Object@)">
+ <summary>Creates a new instance of a type that describes a component class (coclass).</summary>
+ <param name="pUnkOuter">The object that acts as the controlling <see langword="IUnknown" />.</param>
+ <param name="riid">The IID of the interface that the caller uses to communicate with the resulting object.</param>
+ <param name="ppvObj">When this method returns, contains a reference to the created object. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetContainingTypeLib(System.Runtime.InteropServices.ComTypes.ITypeLib@,System.Int32@)">
+ <summary>Retrieves the type library that contains this type description and its index within that type library.</summary>
+ <param name="ppTLB">When this method returns, contains a reference to the containing type library. This parameter is passed uninitialized.</param>
+ <param name="pIndex">When this method returns, contains a reference to the index of the type description within the containing type library. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetDllEntry(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr,System.IntPtr,System.IntPtr)">
+ <summary>Retrieves a description or specification of an entry point for a function in a DLL.</summary>
+ <param name="memid">The ID of the member function whose DLL entry description is to be returned.</param>
+ <param name="invKind">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by <paramref name="memid" />.</param>
+ <param name="pBstrDllName">If not <see langword="null" />, the function sets <paramref name="pBstrDllName" /> to a <see langword="BSTR" /> that contains the name of the DLL.</param>
+ <param name="pBstrName">If not <see langword="null" />, the function sets <c>lpbstrName</c> to a <see langword="BSTR" /> that contains the name of the entry point.</param>
+ <param name="pwOrdinal">If not <see langword="null" />, and the function is defined by an ordinal, then <c>lpwOrdinal</c> is set to point to the ordinal.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description.</summary>
+ <param name="index">The ID of the member whose documentation is to be returned.</param>
+ <param name="strName">When this method returns, contains the name of the item method. This parameter is passed uninitialized.</param>
+ <param name="strDocString">When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized.</param>
+ <param name="dwHelpContext">When this method returns, contains a reference to the Help context associated with the specified item. This parameter is passed uninitialized.</param>
+ <param name="strHelpFile">When this method returns, contains the fully qualified name of the Help file. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)">
+ <summary>Retrieves the <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure that contains information about a specified function.</summary>
+ <param name="index">The index of the function description to return.</param>
+ <param name="ppFuncDesc">When this method returns, contains a reference to a <see langword="FUNCDESC" /> structure that describes the specified function. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetIDsOfNames(System.String[],System.Int32,System.Int32[])">
+ <summary>Maps between member names and member IDs, and parameter names and parameter IDs.</summary>
+ <param name="rgszNames">An array of names to map.</param>
+ <param name="cNames">The count of names to map.</param>
+ <param name="pMemId">When this method returns, contains a reference to an array in which name mappings are placed. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetImplTypeFlags(System.Int32,System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS@)">
+ <summary>Retrieves the <see cref="T:System.Runtime.InteropServices.IMPLTYPEFLAGS" /> value for one implemented interface or base interface in a type description.</summary>
+ <param name="index">The index of the implemented interface or base interface.</param>
+ <param name="pImplTypeFlags">When this method returns, contains a reference to the <see langword="IMPLTYPEFLAGS" /> enumeration. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetMops(System.Int32,System.String@)">
+ <summary>Retrieves marshaling information.</summary>
+ <param name="memid">The member ID that indicates which marshaling information is needed.</param>
+ <param name="pBstrMops">When this method returns, contains a reference to the <see langword="opcode" /> string used in marshaling the fields of the structure described by the referenced type description, or returns <see langword="null" /> if there is no information to return. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetNames(System.Int32,System.String[],System.Int32,System.Int32@)">
+ <summary>Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that corresponds to the specified function ID.</summary>
+ <param name="memid">The ID of the member whose name (or names) is to be returned.</param>
+ <param name="rgBstrNames">When this method returns, contains the name (or names) associated with the member. This parameter is passed uninitialized.</param>
+ <param name="cMaxNames">The length of the <paramref name="rgBstrNames" /> array.</param>
+ <param name="pcNames">When this method returns, contains the number of names in the <paramref name="rgBstrNames" /> array. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetRefTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the referenced type descriptions if a type description references other type descriptions.</summary>
+ <param name="hRef">A handle to the referenced type description to return.</param>
+ <param name="ppTI">When this method returns, contains the referenced type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetRefTypeOfImplType(System.Int32,System.Int32@)">
+ <summary>Retrieves the type description of the implemented interface types if a type description describes a COM class.</summary>
+ <param name="index">The index of the implemented type whose handle is returned.</param>
+ <param name="href">When this method returns, contains a reference to a handle for the implemented interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)">
+ <summary>Retrieves a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure that contains the attributes of the type description.</summary>
+ <param name="ppTypeAttr">When this method returns, contains a reference to the structure that contains the attributes of this type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)">
+ <summary>Retrieves the <see langword="ITypeComp" /> interface for the type description, which enables a client compiler to bind to the type description's members.</summary>
+ <param name="ppTComp">When this method returns, contains a reference to the <see langword="ITypeComp" /> interface of the containing type library. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)">
+ <summary>Retrieves a <see langword="VARDESC" /> structure that describes the specified variable.</summary>
+ <param name="index">The index of the variable description to return.</param>
+ <param name="ppVarDesc">When this method returns, contains a reference to the <see langword="VARDESC" /> structure that describes the specified variable. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.Invoke(System.Object,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.DISPPARAMS@,System.IntPtr,System.IntPtr,System.Int32@)">
+ <summary>Invokes a method, or accesses a property of an object, that implements the interface described by the type description.</summary>
+ <param name="pvInstance">A reference to the interface described by this type description.</param>
+ <param name="memid">A value that identifies the interface member.</param>
+ <param name="wFlags">Flags that describe the context of the invoke call.</param>
+ <param name="pDispParams">A reference to a structure that contains an array of arguments, an array of DISPIDs for named arguments, and counts of the number of elements in each array.</param>
+ <param name="pVarResult">A reference to the location at which the result is to be stored. If <paramref name="wFlags" /> specifies <see langword="DISPATCH_PROPERTYPUT" /> or <see langword="DISPATCH_PROPERTYPUTREF" />, <paramref name="pVarResult" /> is ignored. Set to <see langword="null" /> if no result is desired.</param>
+ <param name="pExcepInfo">A pointer to an exception information structure, which is filled in only if <see langword="DISP_E_EXCEPTION" /> is returned.</param>
+ <param name="puArgErr">If <see langword="Invoke" /> returns <see langword="DISP_E_TYPEMISMATCH" />, <paramref name="puArgErr" /> indicates the index within <c>rgvarg</c> of the argument with the incorrect type. If more than one argument returns an error, <paramref name="puArgErr" /> indicates only the first argument with an error. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseFuncDesc(System.IntPtr)">
+ <summary>Releases a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)" /> method.</summary>
+ <param name="pFuncDesc">A reference to the <see langword="FUNCDESC" /> structure to release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseTypeAttr(System.IntPtr)">
+ <summary>Releases a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)" /> method.</summary>
+ <param name="pTypeAttr">A reference to the <see langword="TYPEATTR" /> structure to release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.ReleaseVarDesc(System.IntPtr)">
+ <summary>Releases a <see langword="VARDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)" /> method.</summary>
+ <param name="pVarDesc">A reference to the <see langword="VARDESC" /> structure to release.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ITypeInfo2">
+ <summary>Provides the managed definition of the <see langword="ITypeInfo2" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.AddressOfMember(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr@)">
+ <summary>Retrieves the addresses of static functions or variables, such as those defined in a DLL.</summary>
+ <param name="memid">The member ID of the <see langword="static" /> member's address to retrieve.</param>
+ <param name="invKind">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies whether the member is a property, and if so, what kind.</param>
+ <param name="ppv">When this method returns, contains a reference to the <see langword="static" /> member. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.CreateInstance(System.Object,System.Guid@,System.Object@)">
+ <summary>Creates a new instance of a type that describes a component class (coclass).</summary>
+ <param name="pUnkOuter">An object that acts as the controlling <see langword="IUnknown" />.</param>
+ <param name="riid">The IID of the interface that the caller uses to communicate with the resulting object.</param>
+ <param name="ppvObj">When this method returns, contains a reference to the created object. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllCustData(System.IntPtr)">
+ <summary>Gets all custom data items for the library.</summary>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" />, which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllFuncCustData(System.Int32,System.IntPtr)">
+ <summary>Gets all custom data from the specified function.</summary>
+ <param name="index">The index of the function to get the custom data for.</param>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" />, which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllImplTypeCustData(System.Int32,System.IntPtr)">
+ <summary>Gets all custom data for the specified implementation type.</summary>
+ <param name="index">The index of the implementation type for the custom data.</param>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" /> which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllParamCustData(System.Int32,System.Int32,System.IntPtr)">
+ <summary>Gets all of the custom data for the specified function parameter.</summary>
+ <param name="indexFunc">The index of the function to get the custom data for.</param>
+ <param name="indexParam">The index of the parameter of this function to get the custom data for.</param>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" />, which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetAllVarCustData(System.Int32,System.IntPtr)">
+ <summary>Gets the variable for the custom data.</summary>
+ <param name="index">The index of the variable to get the custom data for.</param>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" />, which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetContainingTypeLib(System.Runtime.InteropServices.ComTypes.ITypeLib@,System.Int32@)">
+ <summary>Retrieves the type library that contains this type description and its index within that type library.</summary>
+ <param name="ppTLB">When this method returns, contains a reference to the containing type library. This parameter is passed uninitialized.</param>
+ <param name="pIndex">When this method returns, contains a reference to the index of the type description within the containing type library. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetCustData(System.Guid@,System.Object@)">
+ <summary>Gets the custom data.</summary>
+ <param name="guid">The GUID used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an <see langword="Object" /> that specifies where to put the retrieved data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDllEntry(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.IntPtr,System.IntPtr,System.IntPtr)">
+ <summary>Retrieves a description or specification of an entry point for a function in a DLL.</summary>
+ <param name="memid">The ID of the member function whose DLL entry description is to be returned.</param>
+ <param name="invKind">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by <paramref name="memid" />.</param>
+ <param name="pBstrDllName">If not <see langword="null" />, the function sets <paramref name="pBstrDllName" /> to a <see langword="BSTR" /> that contains the name of the DLL.</param>
+ <param name="pBstrName">If not <see langword="null" />, the function sets <c>lpbstrName</c> to a <see langword="BSTR" /> that contains the name of the entry point.</param>
+ <param name="pwOrdinal">If not <see langword="null" />, and the function is defined by an ordinal, then <c>lpwOrdinal</c> is set to point to the ordinal.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description.</summary>
+ <param name="index">The ID of the member whose documentation is to be returned.</param>
+ <param name="strName">When this method returns, contains the name of the item method. This parameter is passed uninitialized.</param>
+ <param name="strDocString">When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized.</param>
+ <param name="dwHelpContext">When this method returns, contains a reference to the Help context associated with the specified item. This parameter is passed uninitialized.</param>
+ <param name="strHelpFile">When this method returns, contains the fully qualified name of the Help file. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetDocumentation2(System.Int32,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the documentation string, the complete Help file name and path, the localization context to use, and the context ID for the library Help topic in the Help file.</summary>
+ <param name="memid">The member identifier for the type description.</param>
+ <param name="pbstrHelpString">When this method returns, contains a <see langword="BSTR" /> that contains the name of the specified item. If the caller does not need the item name, <paramref name="pbstrHelpString" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ <param name="pdwHelpStringContext">When this method returns, contains the Help localization context. If the caller does not need the Help context, <paramref name="pdwHelpStringContext" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ <param name="pbstrHelpStringDll">When this method returns, contains a <see langword="BSTR" /> that contains the fully qualified name of the file containing the DLL used for the Help file. If the caller does not need the file name, <paramref name="pbstrHelpStringDll" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncCustData(System.Int32,System.Guid@,System.Object@)">
+ <summary>Gets the custom data from the specified function.</summary>
+ <param name="index">The index of the function to get the custom data for.</param>
+ <param name="guid">The GUID used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an <see langword="Object" /> that specified where to put the data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncDesc(System.Int32,System.IntPtr@)">
+ <summary>Retrieves the <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure that contains information about a specified function.</summary>
+ <param name="index">The index of the function description to return.</param>
+ <param name="ppFuncDesc">When this method returns, contains a reference to a <see langword="FUNCDESC" /> structure that describes the specified function. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetFuncIndexOfMemId(System.Int32,System.Runtime.InteropServices.ComTypes.INVOKEKIND,System.Int32@)">
+ <summary>Binds to a specific member based on a known DISPID, where the member name is not known (for example, when binding to a default member).</summary>
+ <param name="memid">The member identifier.</param>
+ <param name="invKind">One of the <see cref="T:System.Runtime.InteropServices.ComTypes.INVOKEKIND" /> values that specifies the kind of member identified by memid.</param>
+ <param name="pFuncIndex">When this method returns, contains an index into the function. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetIDsOfNames(System.String[],System.Int32,System.Int32[])">
+ <summary>Maps between member names and member IDs, and parameter names and parameter IDs.</summary>
+ <param name="rgszNames">An array of names to map.</param>
+ <param name="cNames">The count of names to map.</param>
+ <param name="pMemId">When this method returns, contains a reference to an array in which name mappings are placed. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetImplTypeCustData(System.Int32,System.Guid@,System.Object@)">
+ <summary>Gets the implementation type of the custom data.</summary>
+ <param name="index">The index of the implementation type for the custom data.</param>
+ <param name="guid">The GUID used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an <see langword="Object" /> that specifies where to put the retrieved data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetImplTypeFlags(System.Int32,System.Runtime.InteropServices.ComTypes.IMPLTYPEFLAGS@)">
+ <summary>Retrieves the <see cref="T:System.Runtime.InteropServices.IMPLTYPEFLAGS" /> value for one implemented interface or base interface in a type description.</summary>
+ <param name="index">The index of the implemented interface or base interface.</param>
+ <param name="pImplTypeFlags">When this method returns, contains a reference to the <see langword="IMPLTYPEFLAGS" /> enumeration. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetMops(System.Int32,System.String@)">
+ <summary>Retrieves marshaling information.</summary>
+ <param name="memid">The member ID that indicates which marshaling information is needed.</param>
+ <param name="pBstrMops">When this method returns, contains a reference to the <see langword="opcode" /> string used in marshaling the fields of the structure described by the referenced type description, or returns <see langword="null" /> if there is no information to return. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetNames(System.Int32,System.String[],System.Int32,System.Int32@)">
+ <summary>Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that corresponds to the specified function ID.</summary>
+ <param name="memid">The ID of the member whose name (or names) is to be returned.</param>
+ <param name="rgBstrNames">When this method returns, contains the name (or names) associated with the member. This parameter is passed uninitialized.</param>
+ <param name="cMaxNames">The length of the <paramref name="rgBstrNames" /> array.</param>
+ <param name="pcNames">When this method returns, contains the number of names in the <paramref name="rgBstrNames" /> array. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetParamCustData(System.Int32,System.Int32,System.Guid@,System.Object@)">
+ <summary>Gets the specified custom data parameter.</summary>
+ <param name="indexFunc">The index of the function to get the custom data for.</param>
+ <param name="indexParam">The index of the parameter of this function to get the custom data for.</param>
+ <param name="guid">The GUID used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an <see langword="Object" /> that specifies where to put the retrieved data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetRefTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the referenced type descriptions, if a type description references other type descriptions.</summary>
+ <param name="hRef">A handle to the referenced type description to return.</param>
+ <param name="ppTI">When this method returns, contains the referenced type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetRefTypeOfImplType(System.Int32,System.Int32@)">
+ <summary>Retrieves the type description of the implemented interface types, if a type description describes a COM class.</summary>
+ <param name="index">The index of the implemented type whose handle is returned.</param>
+ <param name="href">When this method returns, contains a reference to a handle for the implemented interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeAttr(System.IntPtr@)">
+ <summary>Retrieves a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure that contains the attributes of the type description.</summary>
+ <param name="ppTypeAttr">When this method returns, contains a reference to the structure that contains the attributes of this type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)">
+ <summary>Retrieves the <see langword="ITypeComp" /> interface for the type description, which enables a client compiler to bind to the type description's members.</summary>
+ <param name="ppTComp">When this method returns, contains a reference to the <see langword="ITypeComp" /> of the containing type library. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeFlags(System.Int32@)">
+ <summary>Returns the type flags without any allocations. This method returns a <see langword="DWORD" /> type flag, which expands the type flags without growing the <see langword="TYPEATTR" /> (type attribute).</summary>
+ <param name="pTypeFlags">When this method returns, contains a <see langword="DWORD" /> reference to a <see langword="TYPEFLAG" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetTypeKind(System.Runtime.InteropServices.ComTypes.TYPEKIND@)">
+ <summary>Returns the <see langword="TYPEKIND" /> enumeration quickly, without doing any allocations.</summary>
+ <param name="pTypeKind">When this method returns, contains a reference to a <see langword="TYPEKIND" /> enumeration. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarCustData(System.Int32,System.Guid@,System.Object@)">
+ <summary>Gets the variable for the custom data.</summary>
+ <param name="index">The index of the variable to get the custom data for.</param>
+ <param name="guid">The GUID used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an <see langword="Object" /> that specifies where to put the retrieved data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarDesc(System.Int32,System.IntPtr@)">
+ <summary>Retrieves a <see langword="VARDESC" /> structure that describes the specified variable.</summary>
+ <param name="index">The index of the variable description to return.</param>
+ <param name="ppVarDesc">When this method returns, contains a reference to the <see langword="VARDESC" /> structure that describes the specified variable. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.GetVarIndexOfMemId(System.Int32,System.Int32@)">
+ <summary>Binds to a specific member based on a known <see langword="DISPID" />, where the member name is not known (for example, when binding to a default member).</summary>
+ <param name="memid">The member identifier.</param>
+ <param name="pVarIndex">When this method returns, contains an index of <paramref name="memid" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.Invoke(System.Object,System.Int32,System.Int16,System.Runtime.InteropServices.ComTypes.DISPPARAMS@,System.IntPtr,System.IntPtr,System.Int32@)">
+ <summary>Invokes a method, or accesses a property of an object, that implements the interface described by the type description.</summary>
+ <param name="pvInstance">A reference to the interface described by this type description.</param>
+ <param name="memid">Identifier of the interface member.</param>
+ <param name="wFlags">Flags describing the context of the invoke call.</param>
+ <param name="pDispParams">A reference to a structure that contains an array of arguments, an array of DISPIDs for named arguments, and counts of the number of elements in each array.</param>
+ <param name="pVarResult">A reference to the location at which the result is to be stored. If <paramref name="wFlags" /> specifies <see langword="DISPATCH_PROPERTYPUT" /> or <see langword="DISPATCH_PROPERTYPUTREF" />, <paramref name="pVarResult" /> is ignored. Set to <see langword="null" /> if no result is desired.</param>
+ <param name="pExcepInfo">A pointer to an exception information structure, which is filled in only if <see langword="DISP_E_EXCEPTION" /> is returned.</param>
+ <param name="puArgErr">If <see langword="Invoke" /> returns <see langword="DISP_E_TYPEMISMATCH" />, <paramref name="puArgErr" /> indicates the index of the argument with incorrect type. If more than one argument returns an error, <paramref name="puArgErr" /> indicates only the first argument with an error.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseFuncDesc(System.IntPtr)">
+ <summary>Releases a <see cref="T:System.Runtime.InteropServices.FUNCDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetFuncDesc(System.Int32,System.IntPtr@)" /> method.</summary>
+ <param name="pFuncDesc">A reference to the <see langword="FUNCDESC" /> structure to release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseTypeAttr(System.IntPtr)">
+ <summary>Releases a <see cref="T:System.Runtime.InteropServices.TYPEATTR" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetTypeAttr(System.IntPtr@)" /> method.</summary>
+ <param name="pTypeAttr">A reference to the <see langword="TYPEATTR" /> structure to release.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeInfo2.ReleaseVarDesc(System.IntPtr)">
+ <summary>Releases a <see langword="VARDESC" /> structure previously returned by the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeInfo.GetVarDesc(System.Int32,System.IntPtr@)" /> method.</summary>
+ <param name="pVarDesc">A reference to the <see langword="VARDESC" /> structure to release.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ITypeLib">
+ <summary>Provides the managed definition of the <see langword="ITypeLib" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.FindName(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo[],System.Int32[],System.Int16@)">
+ <summary>Finds occurrences of a type description in a type library.</summary>
+ <param name="szNameBuf">The name to search for. This is an in/out parameter.</param>
+ <param name="lHashVal">A hash value to speed up the search, computed by the <see langword="LHashValOfNameSys" /> function. If <paramref name="lHashVal" /> is 0, a value is computed.</param>
+ <param name="ppTInfo">When this method returns, contains an array of pointers to the type descriptions that contain the name specified in <paramref name="szNameBuf" />. This parameter is passed uninitialized.</param>
+ <param name="rgMemId">An array of the <see langword="MEMBERID" /> 's of the found items; <paramref name="rgMemId" /> [i] is the <see langword="MEMBERID" /> that indexes into the type description specified by <paramref name="ppTInfo" /> [i]. Cannot be <see langword="null" />.</param>
+ <param name="pcFound">On entry, indicates how many instances to look for. For example, <paramref name="pcFound" /> = 1 can be called to find the first occurrence. The search stops when one instance is found.
+On exit, indicates the number of instances that were found. If the <see langword="in" /> and <see langword="out" /> values of <paramref name="pcFound" /> are identical, there might be more type descriptions that contain the name.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file.</summary>
+ <param name="index">The index of the type description whose documentation is to be returned.</param>
+ <param name="strName">When this method returns, contains a string that represents the name of the specified item. This parameter is passed uninitialized.</param>
+ <param name="strDocString">When this method returns, contains a string that represents the documentation string for the specified item. This parameter is passed uninitialized.</param>
+ <param name="dwHelpContext">When this method returns, contains the Help context identifier associated with the specified item. This parameter is passed uninitialized.</param>
+ <param name="strHelpFile">When this method returns, contains a string that represents the fully qualified name of the Help file. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)">
+ <summary>Retrieves the structure that contains the library's attributes.</summary>
+ <param name="ppTLibAttr">When this method returns, contains a structure that contains the library's attributes. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)">
+ <summary>Enables a client compiler to bind to a library's types, variables, constants, and global functions.</summary>
+ <param name="ppTComp">When this method returns, contains an instance of a <see langword="ITypeComp" /> instance for this <see langword="ITypeLib" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the specified type description in the library.</summary>
+ <param name="index">The index of the <see langword="ITypeInfo" /> interface to return.</param>
+ <param name="ppTI">When this method returns, contains an <see langword="ITypeInfo" /> describing the type referenced by <paramref name="index" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoCount">
+ <summary>Returns the number of type descriptions in the type library.</summary>
+ <returns>The number of type descriptions in the type library.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoOfGuid(System.Guid@,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the type description that corresponds to the specified GUID.</summary>
+ <param name="guid">The IID of the interface or CLSID of the class whose type info is requested.</param>
+ <param name="ppTInfo">When this method returns, contains the requested <see langword="ITypeInfo" /> interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.ComTypes.TYPEKIND@)">
+ <summary>Retrieves the type of a type description.</summary>
+ <param name="index">The index of the type description within the type library.</param>
+ <param name="pTKind">When this method returns, contains a reference to the <see langword="TYPEKIND" /> enumeration for the type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.IsName(System.String,System.Int32)">
+ <summary>Indicates whether a passed-in string contains the name of a type or member described in the library.</summary>
+ <param name="szNameBuf">The string to test. This is an in/out parameter.</param>
+ <param name="lHashVal">The hash value of <paramref name="szNameBuf" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="szNameBuf" /> was found in the type library; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib.ReleaseTLibAttr(System.IntPtr)">
+ <summary>Releases the <see cref="T:System.Runtime.InteropServices.TYPELIBATTR" /> structure originally obtained from the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)" /> method.</summary>
+ <param name="pTLibAttr">The <see langword="TLIBATTR" /> structure to release.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.ITypeLib2">
+ <summary>Provides a managed definition of the <see langword="ITypeLib2" /> interface.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.FindName(System.String,System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo[],System.Int32[],System.Int16@)">
+ <summary>Finds occurrences of a type description in a type library.</summary>
+ <param name="szNameBuf">The name to search for.</param>
+ <param name="lHashVal">A hash value to speed up the search, computed by the <see langword="LHashValOfNameSys" /> function. If <paramref name="lHashVal" /> is 0, a value is computed.</param>
+ <param name="ppTInfo">When this method returns, contains an array of pointers to the type descriptions that contain the name specified in <paramref name="szNameBuf" />. This parameter is passed uninitialized.</param>
+ <param name="rgMemId">When this method returns, contains an array of the <see langword="MEMBERID" />s of the found items; <paramref name="rgMemId" /> [i] is the <see langword="MEMBERID" /> that indexes into the type description specified by <paramref name="ppTInfo" /> [i]. This parameter cannot be <see langword="null" />. This parameter is passed uninitialized.</param>
+ <param name="pcFound">On entry, a value, passed by reference, that indicates how many instances to look for. For example, <paramref name="pcFound" /> = 1 can be called to find the first occurrence. The search stops when one instance is found.
+On exit, indicates the number of instances that were found. If the <see langword="in" /> and <see langword="out" /> values of <paramref name="pcFound" /> are identical, there might be more type descriptions that contain the name.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetAllCustData(System.IntPtr)">
+ <summary>Gets all custom data items for the library.</summary>
+ <param name="pCustData">A pointer to <see langword="CUSTDATA" />, which holds all custom data items.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetCustData(System.Guid@,System.Object@)">
+ <summary>Gets the custom data.</summary>
+ <param name="guid">A <see cref="T:System.Guid" /> , passed by reference, that is used to identify the data.</param>
+ <param name="pVarVal">When this method returns, contains an object that specifies where to put the retrieved data. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetDocumentation(System.Int32,System.String@,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file.</summary>
+ <param name="index">An index of the type description whose documentation is to be returned.</param>
+ <param name="strName">When this method returns, contains a string that specifies the name of the specified item. This parameter is passed uninitialized.</param>
+ <param name="strDocString">When this method returns, contains the documentation string for the specified item. This parameter is passed uninitialized.</param>
+ <param name="dwHelpContext">When this method returns, contains the Help context identifier associated with the specified item. This parameter is passed uninitialized.</param>
+ <param name="strHelpFile">When this method returns, contains a string that specifies the fully qualified name of the Help file. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetDocumentation2(System.Int32,System.String@,System.Int32@,System.String@)">
+ <summary>Retrieves the library's documentation string, the complete Help file name and path, the localization context to use, and the context ID for the library Help topic in the Help file.</summary>
+ <param name="index">An index of the type description whose documentation is to be returned; if <paramref name="index" /> is -1, the documentation for the library is returned.</param>
+ <param name="pbstrHelpString">When this method returns, contains a BSTR that specifies the name of the specified item. If the caller does not need the item name, <paramref name="pbstrHelpString" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ <param name="pdwHelpStringContext">When this method returns, contains the Help localization context. If the caller does not need the Help context, <paramref name="pdwHelpStringContext" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ <param name="pbstrHelpStringDll">When this method returns, contains a BSTR that specifies the fully qualified name of the file containing the DLL used for Help file. If the caller does not need the file name, <paramref name="pbstrHelpStringDll" /> can be <see langword="null" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetLibAttr(System.IntPtr@)">
+ <summary>Retrieves the structure that contains the library's attributes.</summary>
+ <param name="ppTLibAttr">When this method returns, contains a structure that contains the library's attributes. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetLibStatistics(System.IntPtr,System.Int32@)">
+ <summary>Returns statistics about a type library that are required for efficient sizing of hash tables.</summary>
+ <param name="pcUniqueNames">A pointer to a count of unique names. If the caller does not need this information, set to <see langword="null" />.</param>
+ <param name="pcchUniqueNames">When this method returns, contains a pointer to a change in the count of unique names. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeComp(System.Runtime.InteropServices.ComTypes.ITypeComp@)">
+ <summary>Enables a client compiler to bind to a library's types, variables, constants, and global functions.</summary>
+ <param name="ppTComp">When this method returns, contains an <see langword="ITypeComp" /> instance for this <see langword="ITypeLib" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfo(System.Int32,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the specified type description in the library.</summary>
+ <param name="index">An index of the <see langword="ITypeInfo" /> interface to return.</param>
+ <param name="ppTI">When this method returns, contains an <see langword="ITypeInfo" /> describing the type referenced by <paramref name="index" />. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoCount">
+ <summary>Returns the number of type descriptions in the type library.</summary>
+ <returns>The number of type descriptions in the type library.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoOfGuid(System.Guid@,System.Runtime.InteropServices.ComTypes.ITypeInfo@)">
+ <summary>Retrieves the type description that corresponds to the specified GUID.</summary>
+ <param name="guid">The <see cref="T:System.Guid" />, passed by reference, that represents the IID of the <see langword="CLSID" /> interface of the class whose type info is requested.</param>
+ <param name="ppTInfo">When this method returns, contains the requested <see langword="ITypeInfo" /> interface. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.GetTypeInfoType(System.Int32,System.Runtime.InteropServices.ComTypes.TYPEKIND@)">
+ <summary>Retrieves the type of a type description.</summary>
+ <param name="index">The index of the type description within the type library.</param>
+ <param name="pTKind">When this method returns, contains a reference to the <see langword="TYPEKIND" /> enumeration for the type description. This parameter is passed uninitialized.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.IsName(System.String,System.Int32)">
+ <summary>Indicates whether a passed-in string contains the name of a type or member described in the library.</summary>
+ <param name="szNameBuf">The string to test.</param>
+ <param name="lHashVal">The hash value of <paramref name="szNameBuf" />.</param>
+ <returns>
+ <see langword="true" /> if <paramref name="szNameBuf" /> was found in the type library; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComTypes.ITypeLib2.ReleaseTLibAttr(System.IntPtr)">
+ <summary>Releases the <see cref="T:System.Runtime.InteropServices.TYPELIBATTR" /> structure originally obtained from the <see cref="M:System.Runtime.InteropServices.ComTypes.ITypeLib.GetLibAttr(System.IntPtr@)" /> method.</summary>
+ <param name="pTLibAttr">The <see langword="TLIBATTR" /> structure to release.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.LIBFLAGS">
+ <summary>Defines flags that apply to type libraries.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FCONTROL">
+ <summary>The type library describes controls and should not be displayed in type browsers intended for nonvisual objects.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FHASDISKIMAGE">
+ <summary>The type library exists in a persisted form on disk.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FHIDDEN">
+ <summary>The type library should not be displayed to users, although its use is not restricted. The type library should be used by controls. Hosts should create a new type library that wraps the control with extended properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.LIBFLAGS.LIBFLAG_FRESTRICTED">
+ <summary>The type library is restricted, and should not be displayed to users.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.PARAMDESC">
+ <summary>Contains information about how to transfer a structure element, parameter, or function return value between processes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMDESC.lpVarValue">
+ <summary>Represents a pointer to a value that is being passed between processes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMDESC.wParamFlags">
+ <summary>Represents bitmask values that describe the structure element, parameter, or return value.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.PARAMFLAG">
+ <summary>Describes how to transfer a structure element, parameter, or function return value between processes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FHASCUSTDATA">
+ <summary>The parameter has custom data.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FHASDEFAULT">
+ <summary>The parameter has default behaviors defined.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FIN">
+ <summary>The parameter passes information from the caller to the callee.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FLCID">
+ <summary>The parameter is the local identifier of a client application.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FOPT">
+ <summary>The parameter is optional.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FOUT">
+ <summary>The parameter returns information from the callee to the caller.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_FRETVAL">
+ <summary>The parameter is the return value of the member.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.PARAMFLAG.PARAMFLAG_NONE">
+ <summary>Does not specify whether the parameter passes or receives information.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.STATDATA">
+ <summary>Provides the managed definition of the <see langword="STATDATA" /> structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATDATA.advf">
+ <summary>Represents the <see cref="T:System.Runtime.InteropServices.ComTypes.ADVF" /> enumeration value that determines when the advisory sink is notified of changes in the data.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATDATA.advSink">
+ <summary>Represents the <see cref="T:System.Runtime.InteropServices.ComTypes.IAdviseSink" /> interface that will receive change notifications.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATDATA.connection">
+ <summary>Represents the token that uniquely identifies the advisory connection. This token is returned by the method that sets up the advisory connection.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATDATA.formatetc">
+ <summary>Represents the <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure for the data of interest to the advise sink. The advise sink receives notification of changes to the data specified by this <see cref="T:System.Runtime.InteropServices.ComTypes.FORMATETC" /> structure.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.STATSTG">
+ <summary>Contains statistical information about an open storage, stream, or byte-array object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.atime">
+ <summary>Specifies the last access time for this storage, stream, or byte array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.cbSize">
+ <summary>Specifies the size, in bytes, of the stream or byte array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.clsid">
+ <summary>Indicates the class identifier for the storage object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.ctime">
+ <summary>Indicates the creation time for this storage, stream, or byte array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfLocksSupported">
+ <summary>Indicates the types of region locking supported by the stream or byte array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfMode">
+ <summary>Indicates the access mode that was specified when the object was opened.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.grfStateBits">
+ <summary>Indicates the current state bits of the storage object (the value most recently set by the <see langword="IStorage::SetStateBits" /> method).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.mtime">
+ <summary>Indicates the last modification time for this storage, stream, or byte array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.pwcsName">
+ <summary>Represents a pointer to a null-terminated string containing the name of the object described by this structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.reserved">
+ <summary>Reserved for future use.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STATSTG.type">
+ <summary>Indicates the type of storage object, which is one of the values from the <see langword="STGTY" /> enumeration.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM">
+ <summary>Provides the managed definition of the <see langword="STGMEDIUM" /> structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease">
+ <summary>Represents a pointer to an interface instance that allows the sending process to control the way the storage is released when the receiving process calls the <see langword="ReleaseStgMedium" /> function. If <see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> is <see langword="null" />, <see langword="ReleaseStgMedium" /> uses default procedures to release the storage; otherwise, <see langword="ReleaseStgMedium" /> uses the specified <see langword="IUnknown" /> interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.tymed">
+ <summary>Specifies the type of storage medium. The marshaling and unmarshaling routines use this value to determine which union member was used. This value must be one of the elements of the <see cref="T:System.Runtime.InteropServices.ComTypes.TYMED" /> enumeration.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.unionmember">
+ <summary>Represents a handle, string, or interface pointer that the receiving process can use to access the data being transferred.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.SYSKIND">
+ <summary>Identifies the target operating system platform.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_MAC">
+ <summary>The target operating system for the type library is Apple Macintosh. By default, all data fields are aligned on even-byte boundaries.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN16">
+ <summary>The target operating system for the type library is 16-bit Windows systems. By default, data fields are packed.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN32">
+ <summary>The target operating system for the type library is 32-bit Windows systems. By default, data fields are naturally aligned (for example, 2-byte integers are aligned on even-byte boundaries; 4-byte integers are aligned on quad-word boundaries, and so on).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.SYSKIND.SYS_WIN64">
+ <summary>The target operating system for the type library is 64-bit Windows systems.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYMED">
+ <summary>Provides the managed definition of the <see langword="TYMED" /> structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ENHMF">
+ <summary>The storage medium is an enhanced metafile. If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is <see langword="null" />, the destination process should use <see langword="DeleteEnhMetaFile" /> to delete the bitmap.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_FILE">
+ <summary>The storage medium is a disk file identified by a path. If the <see langword="STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is <see langword="null" />, the destination process should use <see langword="OpenFile" /> to delete the file.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_GDI">
+ <summary>The storage medium is a Graphics Device Interface (GDI) component (HBITMAP). If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is <see langword="null" />, the destination process should use <see langword="DeleteObject" /> to delete the bitmap.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_HGLOBAL">
+ <summary>The storage medium is a global memory handle (HGLOBAL). Allocate the global handle with the GMEM_SHARE flag. If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is <see langword="null" />, the destination process should use <see langword="GlobalFree" /> to release the memory.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTORAGE">
+ <summary>The storage medium is a storage component identified by an <see langword="IStorage" /> pointer. The data is in the streams and storages contained by this <see langword="IStorage" /> instance. If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is not <see langword="null" />, the destination process should use <see langword="IStorage::Release" /> to release the storage component.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_ISTREAM">
+ <summary>The storage medium is a stream object identified by an <see langword="IStream" /> pointer. Use <see langword="ISequentialStream::Read" /> to read the data. If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is not <see langword="null" />, the destination process should use <see langword="IStream::Release" /> to release the stream component.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_MFPICT">
+ <summary>The storage medium is a metafile (HMETAFILE). Use the Windows or WIN32 functions to access the metafile's data. If the <see cref="T:System.Runtime.InteropServices.ComTypes.STGMEDIUM" /><see cref="F:System.Runtime.InteropServices.ComTypes.STGMEDIUM.pUnkForRelease" /> member is <see langword="null" />, the destination process should use <see langword="DeleteMetaFile" /> to delete the bitmap.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYMED.TYMED_NULL">
+ <summary>No data is being passed.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYPEATTR">
+ <summary>Contains attributes of a <see langword="UCOMITypeInfo" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbAlignment">
+ <summary>Specifies the byte alignment for an instance of this type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbSizeInstance">
+ <summary>The size of an instance of this type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cbSizeVft">
+ <summary>The size of this type's virtual method table (VTBL).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cFuncs">
+ <summary>Indicates the number of functions on the interface this structure describes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cImplTypes">
+ <summary>Indicates the number of implemented interfaces on the interface this structure describes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.cVars">
+ <summary>Indicates the number of variables and data fields on the interface described by this structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.dwReserved">
+ <summary>Reserved for future use.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.guid">
+ <summary>The GUID of the type information.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.idldescType">
+ <summary>IDL attributes of the described type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.lcid">
+ <summary>Locale of member names and documentation strings.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.lpstrSchema">
+ <summary>Reserved for future use.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.MEMBER_ID_NIL">
+ <summary>A constant used with the <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidConstructor" /> and <see cref="F:System.Runtime.InteropServices.TYPEATTR.memidDestructor" /> fields.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.memidConstructor">
+ <summary>ID of constructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.memidDestructor">
+ <summary>ID of destructor, or <see cref="F:System.Runtime.InteropServices.TYPEATTR.MEMBER_ID_NIL" /> if none.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.tdescAlias">
+ <summary>If <see cref="F:System.Runtime.InteropServices.TYPEATTR.typekind" /> == <see cref="F:System.Runtime.InteropServices.TYPEKIND.TKIND_ALIAS" />, specifies the type for which this type is an alias.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.typekind">
+ <summary>A <see cref="T:System.Runtime.InteropServices.TYPEKIND" /> value describing the type this information describes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wMajorVerNum">
+ <summary>Major version number.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wMinorVerNum">
+ <summary>Minor version number.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEATTR.wTypeFlags">
+ <summary>A <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> value describing this information.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYPEDESC">
+ <summary>Describes the type of a variable, return type of a function, or the type of a function parameter.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEDESC.lpValue">
+ <summary>If the variable is <see langword="VT_SAFEARRAY" /> or <see langword="VT_PTR" />, the <see langword="lpValue" /> field contains a pointer to a <see langword="TYPEDESC" /> that specifies the element type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEDESC.vt">
+ <summary>Indicates the variant type for the item described by this <see langword="TYPEDESC" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYPEFLAGS">
+ <summary>Defines the properties and attributes of a type description.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FAGGREGATABLE">
+ <summary>The class supports aggregation.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FAPPOBJECT">
+ <summary>A type description that describes an <see langword="Application" /> object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FCANCREATE">
+ <summary>Instances of the type can be created by <see langword="ITypeInfo::CreateInstance" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FCONTROL">
+ <summary>The type is a control from which other types will be derived and should not be displayed to users.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FDISPATCHABLE">
+ <summary>Indicates that the interface derives from <see langword="IDispatch" />, either directly or indirectly. This flag is computed; there is no Object Description Language for the flag.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FDUAL">
+ <summary>The interface supplies both <see langword="IDispatch" /> and VTBL binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FHIDDEN">
+ <summary>The type should not be displayed to browsers.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FLICENSED">
+ <summary>The type is licensed.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FNONEXTENSIBLE">
+ <summary>The interface cannot add members at run time.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FOLEAUTOMATION">
+ <summary>The types used in the interface are fully compatible with Automation, including VTBL binding support. Setting dual on an interface sets both this flag and the <see cref="F:System.Runtime.InteropServices.TYPEFLAGS.TYPEFLAG_FDUAL" />. This flag is not allowed on dispinterfaces.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FPREDECLID">
+ <summary>The type is predefined. The client application should automatically create a single instance of the object that has this attribute. The name of the variable that points to the object is the same as the class name of the object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FPROXY">
+ <summary>Indicates that the interface will be using a proxy/stub dynamic link library. This flag specifies that the type library proxy should not be unregistered when the type library is unregistered.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FREPLACEABLE">
+ <summary>The object supports <see langword="IConnectionPointWithDefault" />, and has default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FRESTRICTED">
+ <summary>Should not be accessible from macro languages. This flag is intended for system-level types or types that type browsers should not display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEFLAGS.TYPEFLAG_FREVERSEBIND">
+ <summary>Indicates base interfaces should be checked for name resolution before checking children, which is the reverse of the default behavior.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYPEKIND">
+ <summary>Specifies various types of data and functions.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_ALIAS">
+ <summary>A type that is an alias for another type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_COCLASS">
+ <summary>A set of implemented components interfaces.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_DISPATCH">
+ <summary>A set of methods and properties that are accessible through <see langword="IDispatch::Invoke" />. By default, dual interfaces return <see langword="TKIND_DISPATCH" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_ENUM">
+ <summary>A set of enumerators.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_INTERFACE">
+ <summary>A type that has virtual functions, all of which are pure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_MAX">
+ <summary>End-of-enumeration marker.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_MODULE">
+ <summary>A module that can have only static functions and data (for example, a DLL).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_RECORD">
+ <summary>A structure with no methods.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPEKIND.TKIND_UNION">
+ <summary>A union of all members that have an offset of zero.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.TYPELIBATTR">
+ <summary>Identifies a particular type library and provides localization support for member names.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.guid">
+ <summary>Represents a globally unique library ID of a type library.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.lcid">
+ <summary>Represents a locale ID of a type library.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.syskind">
+ <summary>Represents the target hardware platform of a type library.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wLibFlags">
+ <summary>Represents library flags.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wMajorVerNum">
+ <summary>Represents the major version number of a type library.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.TYPELIBATTR.wMinorVerNum">
+ <summary>Represents the minor version number of a type library.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.VARDESC">
+ <summary>Describes a variable, constant, or data member.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.desc">
+ <summary>Contains information about a variable.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION">
+ <summary>Contains information about a variable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION.lpvarValue">
+ <summary>Describes a symbolic constant.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.DESCUNION.oInst">
+ <summary>Indicates the offset of this variable within the instance.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.elemdescVar">
+ <summary>Contains the variable type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.lpstrSchema">
+ <summary>This field is reserved for future use.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.memid">
+ <summary>Indicates the member ID of a variable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.varkind">
+ <summary>Defines how to marshal a variable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARDESC.wVarFlags">
+ <summary>Defines the properties of a variable.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.VARFLAGS">
+ <summary>Identifies the constants that define the properties of a variable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FBINDABLE">
+ <summary>The variable supports data binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDEFAULTBIND">
+ <summary>The variable is the single property that best represents the object. Only one variable in type information can have this attribute.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDEFAULTCOLLELEM">
+ <summary>Permits an optimization in which the compiler looks for a member named "xyz" on the type of "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function. Permitted on members in dispinterfaces and interfaces; not permitted on modules.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FDISPLAYBIND">
+ <summary>The variable is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.VARFLAGS.VARFLAG_FBINDABLE" /> must also be set.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FHIDDEN">
+ <summary>The variable should not be displayed to the user in a browser, although it exists and is bindable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FIMMEDIATEBIND">
+ <summary>The variable is mapped as individual bindable properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FNONBROWSABLE">
+ <summary>The variable appears in an object browser, but not in a properties browser.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREADONLY">
+ <summary>Assignment to the variable should not be allowed.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREPLACEABLE">
+ <summary>Tags the interface as having default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FREQUESTEDIT">
+ <summary>When set, any attempt to directly change the property results in a call to <see langword="IPropertyNotifySink::OnRequestEdit" />. The implementation of <see langword="OnRequestEdit" /> determines if the change is accepted.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FRESTRICTED">
+ <summary>The variable should not be accessible from macro languages. This flag is intended for system-level variables or variables that you do not want type browsers to display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FSOURCE">
+ <summary>The variable returns an object that is a source of events.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARFLAGS.VARFLAG_FUIDEFAULT">
+ <summary>The variable is the default display in the user interface.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComTypes.VARKIND">
+ <summary>Defines the kind of variable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_CONST">
+ <summary>The <see langword="VARDESC" /> structure describes a symbolic constant. There is no memory associated with it.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_DISPATCH">
+ <summary>The variable can be accessed only through <see langword="IDispatch::Invoke" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_PERINSTANCE">
+ <summary>The variable is a field or member of the type. It exists at a fixed offset within each instance of the type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.ComTypes.VARKIND.VAR_STATIC">
+ <summary>There is only one instance of the variable.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute">
+ <summary>Specifies the method to call when you unregister an assembly for use from COM; this allows for the execution of user-written code during the unregistration process.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ComUnregisterFunctionAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ComUnregisterFunctionAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.CurrencyWrapper">
+ <summary>Wraps objects the marshaler should marshal as a <see langword="VT_CY" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.CurrencyWrapper.#ctor(System.Decimal)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.CurrencyWrapper" /> class with the <see langword="Decimal" /> to be wrapped and marshaled as type <see langword="VT_CY" />.</summary>
+ <param name="obj">The <see langword="Decimal" /> to be wrapped and marshaled as <see langword="VT_CY" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.CurrencyWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.CurrencyWrapper" /> class with the object containing the <see langword="Decimal" /> to be wrapped and marshaled as type <see langword="VT_CY" />.</summary>
+ <param name="obj">The object containing the <see langword="Decimal" /> to be wrapped and marshaled as <see langword="VT_CY" />.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="obj" /> parameter is not a <see cref="T:System.Decimal" /> type.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.CurrencyWrapper.WrappedObject">
+ <summary>Gets the wrapped object to be marshaled as type <see langword="VT_CY" />.</summary>
+ <returns>The wrapped object to be marshaled as type <see langword="VT_CY" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.CustomQueryInterfaceMode">
+ <summary>Indicates whether the <see cref="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type,System.Runtime.InteropServices.CustomQueryInterfaceMode)" /> method's IUnknown::QueryInterface calls can use the <see cref="T:System.Runtime.InteropServices.ICustomQueryInterface" /> interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CustomQueryInterfaceMode.Allow">
+ <summary>IUnknown::QueryInterface method calls can use the <see cref="T:System.Runtime.InteropServices.ICustomQueryInterface" /> interface. When you use this value, the <see cref="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type,System.Runtime.InteropServices.CustomQueryInterfaceMode)" /> method overload functions like the <see cref="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type)" /> overload.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CustomQueryInterfaceMode.Ignore">
+ <summary>IUnknown::QueryInterface method calls should ignore the <see cref="T:System.Runtime.InteropServices.ICustomQueryInterface" /> interface.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.CustomQueryInterfaceResult">
+ <summary>Provides return values for the <see cref="M:System.Runtime.InteropServices.ICustomQueryInterface.GetInterface(System.Guid@,System.IntPtr@)" /> method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CustomQueryInterfaceResult.Failed">
+ <summary>The interface for a specific interface ID is not available. In this case, the returned interface is <see langword="null" />. E_NOINTERFACE is returned to the caller of IUnknown::QueryInterface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CustomQueryInterfaceResult.Handled">
+ <summary>The interface pointer that is returned from the <see cref="M:System.Runtime.InteropServices.ICustomQueryInterface.GetInterface(System.Guid@,System.IntPtr@)" /> method can be used as the result of IUnknown::QueryInterface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.CustomQueryInterfaceResult.NotHandled">
+ <summary>The custom <see langword="QueryInterface" /> was not used. Instead, the default implementation of IUnknown::QueryInterface should be used.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DefaultCharSetAttribute">
+ <summary>Specifies the value of the <see cref="T:System.Runtime.InteropServices.CharSet" /> enumeration. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DefaultCharSetAttribute.#ctor(System.Runtime.InteropServices.CharSet)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DefaultCharSetAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.CharSet" /> value.</summary>
+ <param name="charSet">One of the <see cref="T:System.Runtime.InteropServices.CharSet" /> values.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DefaultCharSetAttribute.CharSet">
+ <summary>Gets the default value of <see cref="T:System.Runtime.InteropServices.CharSet" /> for any call to <see cref="T:System.Runtime.InteropServices.DllImportAttribute" />.</summary>
+ <returns>The default value of <see cref="T:System.Runtime.InteropServices.CharSet" /> for any call to <see cref="T:System.Runtime.InteropServices.DllImportAttribute" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute">
+ <summary>Specifies the paths that are used to search for DLLs that provide functions for platform invokes.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute.#ctor(System.Runtime.InteropServices.DllImportSearchPath)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> class, specifying the paths to use when searching for the targets of platform invokes.</summary>
+ <param name="paths">A bitwise combination of enumeration values that specify the paths that the <c>LoadLibraryEx</c> function searches during platform invokes.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute.Paths">
+ <summary>Gets a bitwise combination of enumeration values that specify the paths that the <c>LoadLibraryEx</c> function searches during platform invokes.</summary>
+ <returns>A bitwise combination of enumeration values that specify search paths for platform invokes.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DefaultParameterValueAttribute">
+ <summary>Sets the default value of a parameter when called from a language that supports default parameters. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DefaultParameterValueAttribute.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DefaultParameterValueAttribute" /> class with the default value of a parameter.</summary>
+ <param name="value">An object that represents the default value of a parameter.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DefaultParameterValueAttribute.Value">
+ <summary>Gets the default value of a parameter.</summary>
+ <returns>An object that represents the default value of a parameter.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DispatchWrapper">
+ <summary>Wraps objects the marshaler should marshal as a <see langword="VT_DISPATCH" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DispatchWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" /> class with the object being wrapped.</summary>
+ <param name="obj">The object to be wrapped and converted to <see cref="F:System.Runtime.InteropServices.VarEnum.VT_DISPATCH" />.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="obj" /> is not a class or an array.
+-or-
+<paramref name="obj" /> does not support <see langword="IDispatch" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <paramref name="obj" /> parameter was marked with a <see cref="T:System.Runtime.InteropServices.ComVisibleAttribute" /> attribute that was passed a value of <see langword="false" />.
+-or-
+The <paramref name="obj" /> parameter inherits from a type marked with a <see cref="T:System.Runtime.InteropServices.ComVisibleAttribute" /> attribute that was passed a value of <see langword="false" />.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DispatchWrapper.WrappedObject">
+ <summary>Gets the object wrapped by the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />.</summary>
+ <returns>The object wrapped by the <see cref="T:System.Runtime.InteropServices.DispatchWrapper" />.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DispIdAttribute">
+ <summary>Specifies the COM dispatch identifier (DISPID) of a method, field, or property.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DispIdAttribute.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see langword="DispIdAttribute" /> class with the specified DISPID.</summary>
+ <param name="dispId">The DISPID for the member.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DispIdAttribute.Value">
+ <summary>Gets the DISPID for the member.</summary>
+ <returns>The DISPID for the member.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DllImportAttribute">
+ <summary>Indicates that the attributed method is exposed by an unmanaged dynamic-link library (DLL) as a static entry point.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.DllImportAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.DllImportAttribute" /> class with the name of the DLL containing the method to import.</summary>
+ <param name="dllName">The name of the DLL that contains the unmanaged method. This can include an assembly display name, if the DLL is included in an assembly.</param>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.BestFitMapping">
+ <summary>Enables or disables best-fit mapping behavior when converting Unicode characters to ANSI characters.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.CallingConvention">
+ <summary>Indicates the calling convention of an entry point.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.CharSet">
+ <summary>Indicates how to marshal string parameters to the method and controls name mangling.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.EntryPoint">
+ <summary>Indicates the name or ordinal of the DLL entry point to be called.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.ExactSpelling">
+ <summary>Controls whether the <see cref="F:System.Runtime.InteropServices.DllImportAttribute.CharSet" /> field causes the common language runtime to search an unmanaged DLL for entry-point names other than the one specified.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.PreserveSig">
+ <summary>Indicates whether unmanaged methods that have <see langword="HRESULT" /> or <see langword="retval" /> return values are directly translated or whether <see langword="HRESULT" /> or <see langword="retval" /> return values are automatically converted to exceptions.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.SetLastError">
+ <summary>Indicates whether the callee calls the <see langword="SetLastError" /> Windows API function before returning from the attributed method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportAttribute.ThrowOnUnmappableChar">
+ <summary>Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI "?" character.</summary>
+ </member>
+ <member name="P:System.Runtime.InteropServices.DllImportAttribute.Value">
+ <summary>Gets the name of the DLL file that contains the entry point.</summary>
+ <returns>The name of the DLL file that contains the entry point.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DllImportResolver">
+ <summary>Provides a delegate used to resolve native libraries via callback.</summary>
+ <param name="libraryName">The native library to resolve.</param>
+ <param name="assembly">The assembly requesting the resolution.</param>
+ <param name="searchPath">The <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> on the PInvoke, if any. Otherwise, the <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> on the assembly, if any. Otherwise <see langword="null" />.</param>
+ <returns>The handle for the loaded native library on success, or <see cref="F:System.IntPtr.Zero" /> on failure.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.DllImportSearchPath">
+ <summary>Specifies the paths that are used to search for DLLs that provide functions for platform invokes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.ApplicationDirectory">
+ <summary>Include the application directory in the DLL search path.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory">
+ <summary>When searching for assembly dependencies, include the directory that contains the assembly itself, and search that directory first. This value is used by the .NET Framework, before the paths are passed to the Win32 LoadLibraryEx function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.LegacyBehavior">
+ <summary>Search the application directory, and then call the Win32 LoadLibraryEx function with the <c>LOAD_WITH_ALTERED_SEARCH_PATH</c> flag. This value is ignored if any other value is specified. Operating systems that do not support the <see cref="T:System.Runtime.InteropServices.DefaultDllImportSearchPathsAttribute" /> attribute use this value, and ignore other values.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.SafeDirectories">
+ <summary>Include the application directory, the <see langword="%WinDir%\System32" /> directory, and user directories in the DLL search path.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.System32">
+ <summary>Include the <see langword="%WinDir%\System32" /> directory in the DLL search path.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.UseDllDirectoryForDependencies">
+ <summary>Search for the dependencies of a DLL in the folder where the DLL is located before searching other folders.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.DllImportSearchPath.UserDirectories">
+ <summary>Include any path that was explicitly added to the process-wide search path by using the Win32 <c>AddDllDirectory</c> function.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ErrorWrapper">
+ <summary>Wraps objects the marshaler should marshal as a <see langword="VT_ERROR" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with the HRESULT that corresponds to the exception supplied.</summary>
+ <param name="e">The exception to be converted to an error code.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with the HRESULT of the error.</summary>
+ <param name="errorCode">The HRESULT of the error.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ErrorWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ErrorWrapper" /> class with an object containing the HRESULT of the error.</summary>
+ <param name="errorCode">The object containing the HRESULT of the error.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="errorCode" /> parameter is not an <see cref="T:System.Int32" /> type.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ErrorWrapper.ErrorCode">
+ <summary>Gets the error code of the wrapper.</summary>
+ <returns>The HRESULT of the error.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.GuidAttribute">
+ <summary>Supplies an explicit <see cref="T:System.Guid" /> when an automatic GUID is undesirable.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.GuidAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.GuidAttribute" /> class with the specified GUID.</summary>
+ <param name="guid">The <see cref="T:System.Guid" /> to be assigned.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.GuidAttribute.Value">
+ <summary>Gets the <see cref="T:System.Guid" /> of the class.</summary>
+ <returns>The <see cref="T:System.Guid" /> of the class.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.HandleCollector">
+ <summary>Tracks outstanding handles and forces a garbage collection when the specified threshold is reached.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleCollector.#ctor(System.String,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.HandleCollector" /> class using a name and a threshold at which to begin handle collection.</summary>
+ <param name="name">A name for the collector. This parameter allows you to name collectors that track handle types separately.</param>
+ <param name="initialThreshold">A value that specifies the point at which collections should begin.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="initialThreshold" /> parameter is less than 0.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleCollector.#ctor(System.String,System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.HandleCollector" /> class using a name, a threshold at which to begin handle collection, and a threshold at which handle collection must occur.</summary>
+ <param name="name">A name for the collector. This parameter allows you to name collectors that track handle types separately.</param>
+ <param name="initialThreshold">A value that specifies the point at which collections should begin.</param>
+ <param name="maximumThreshold">A value that specifies the point at which collections must occur. This should be set to the maximum number of available handles.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="initialThreshold" /> parameter is less than 0.
+-or-
+The <paramref name="maximumThreshold" /> parameter is less than 0.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="maximumThreshold" /> parameter is less than the <paramref name="initialThreshold" /> parameter.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleCollector.Add">
+ <summary>Increments the current handle count.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Runtime.InteropServices.HandleCollector.Count" /> property is less than 0.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleCollector.Count">
+ <summary>Gets the number of handles collected.</summary>
+ <returns>The number of handles collected.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleCollector.InitialThreshold">
+ <summary>Gets a value that specifies the point at which collections should begin.</summary>
+ <returns>A value that specifies the point at which collections should begin.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleCollector.MaximumThreshold">
+ <summary>Gets a value that specifies the point at which collections must occur.</summary>
+ <returns>A value that specifies the point at which collections must occur.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleCollector.Name">
+ <summary>Gets the name of a <see cref="T:System.Runtime.InteropServices.HandleCollector" /> object.</summary>
+ <returns>This <see cref="P:System.Runtime.InteropServices.HandleCollector.Name" /> property allows you to name collectors that track handle types separately.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleCollector.Remove">
+ <summary>Decrements the current handle count.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Runtime.InteropServices.HandleCollector.Count" /> property is less than 0.</exception>
+ </member>
+ <member name="T:System.Runtime.InteropServices.HandleRef">
+ <summary>Wraps a managed object holding a handle to a resource that is passed to unmanaged code using platform invoke.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleRef.#ctor(System.Object,System.IntPtr)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.HandleRef" /> class with the object to wrap and a handle to the resource used by unmanaged code.</summary>
+ <param name="wrapper">A managed object that should not be finalized until the platform invoke call returns.</param>
+ <param name="handle">An <see cref="T:System.IntPtr" /> that indicates a handle to a resource.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleRef.Handle">
+ <summary>Gets the handle to a resource.</summary>
+ <returns>The handle to a resource.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleRef.op_Explicit(System.Runtime.InteropServices.HandleRef)~System.IntPtr">
+ <summary>Returns the handle to a resource of the specified <see cref="T:System.Runtime.InteropServices.HandleRef" /> object.</summary>
+ <param name="value">The object that needs a handle.</param>
+ <returns>The handle to a resource of the specified <see cref="T:System.Runtime.InteropServices.HandleRef" /> object.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.HandleRef.ToIntPtr(System.Runtime.InteropServices.HandleRef)">
+ <summary>Returns the internal integer representation of a <see cref="T:System.Runtime.InteropServices.HandleRef" /> object.</summary>
+ <param name="value">A <see cref="T:System.Runtime.InteropServices.HandleRef" /> object to retrieve an internal integer representation from.</param>
+ <returns>An <see cref="T:System.IntPtr" /> object that represents a <see cref="T:System.Runtime.InteropServices.HandleRef" /> object.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.HandleRef.Wrapper">
+ <summary>Gets the object holding the handle to a resource.</summary>
+ <returns>The object holding the handle to a resource.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ICustomAdapter">
+ <summary>Provides a way for clients to access the actual object, rather than the adapter object handed out by a custom marshaler.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomAdapter.GetUnderlyingObject">
+ <summary>Provides access to the underlying object wrapped by a custom marshaler.</summary>
+ <returns>The object contained by the adapter object.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ICustomFactory">
+ <summary>Enables users to write activation code for managed objects that extend <see cref="T:System.MarshalByRefObject" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomFactory.CreateInstance(System.Type)">
+ <summary>Creates a new instance of the specified type.</summary>
+ <param name="serverType">The type to activate.</param>
+ <returns>A <see cref="T:System.MarshalByRefObject" /> associated with the specified type.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ICustomMarshaler">
+ <summary>Provides custom wrappers for handling method calls.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomMarshaler.CleanUpManagedData(System.Object)">
+ <summary>Performs necessary cleanup of the managed data when it is no longer needed.</summary>
+ <param name="ManagedObj">The managed object to be destroyed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomMarshaler.CleanUpNativeData(System.IntPtr)">
+ <summary>Performs necessary cleanup of the unmanaged data when it is no longer needed.</summary>
+ <param name="pNativeData">A pointer to the unmanaged data to be destroyed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomMarshaler.GetNativeDataSize">
+ <summary>Returns the size of the native data to be marshaled.</summary>
+ <returns>The size, in bytes, of the native data.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomMarshaler.MarshalManagedToNative(System.Object)">
+ <summary>Converts the managed data to unmanaged data.</summary>
+ <param name="ManagedObj">The managed object to be converted.</param>
+ <returns>A pointer to the COM view of the managed object.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomMarshaler.MarshalNativeToManaged(System.IntPtr)">
+ <summary>Converts the unmanaged data to managed data.</summary>
+ <param name="pNativeData">A pointer to the unmanaged data to be wrapped.</param>
+ <returns>An object that represents the managed view of the COM data.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ICustomQueryInterface">
+ <summary>Enables developers to provide a custom, managed implementation of the IUnknown::QueryInterface(REFIID riid, void **ppvObject) method.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ICustomQueryInterface.GetInterface(System.Guid@,System.IntPtr@)">
+ <summary>Returns an interface according to a specified interface ID.</summary>
+ <param name="iid">The GUID of the requested interface.</param>
+ <param name="ppv">A reference to the requested interface, when this method returns.</param>
+ <returns>One of the enumeration values that indicates whether a custom implementation of IUnknown::QueryInterface was used.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute">
+ <summary>Indicates that the types defined within an assembly were originally defined in a type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ImportedFromTypeLibAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ImportedFromTypeLibAttribute" /> class with the name of the original type library file.</summary>
+ <param name="tlbFile">The location of the original type library file.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ImportedFromTypeLibAttribute.Value">
+ <summary>Gets the name of the original type library file.</summary>
+ <returns>The name of the original type library file.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.InterfaceTypeAttribute">
+ <summary>Indicates whether a managed interface is dual, dispatch-only, or <see langword="IUnknown" /> -only when exposed to COM.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InterfaceTypeAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InterfaceTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> enumeration member.</summary>
+ <param name="interfaceType">Describes how the interface should be exposed to COM clients.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InterfaceTypeAttribute.#ctor(System.Runtime.InteropServices.ComInterfaceType)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InterfaceTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> enumeration member.</summary>
+ <param name="interfaceType">One of the <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> values that describes how the interface should be exposed to COM clients.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.InterfaceTypeAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> value that describes how the interface should be exposed to COM.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.ComInterfaceType" /> value that describes how the interface should be exposed to COM.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.InvalidComObjectException">
+ <summary>The exception thrown when an invalid COM object is used.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor">
+ <summary>Initializes an instance of the <see langword="InvalidComObjectException" /> with default properties.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="COMException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.String)">
+ <summary>Initializes an instance of the <see langword="InvalidComObjectException" /> with a message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidComObjectException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InvalidComObjectException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.InvalidOleVariantTypeException">
+ <summary>The exception thrown by the marshaler when it encounters an argument of a variant type that can not be marshaled to managed code.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor">
+ <summary>Initializes a new instance of the <see langword="InvalidOleVariantTypeException" /> class with default values.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="InvalidOleVariantTypeException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="InvalidOleVariantTypeException" /> class with a specified message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.InvalidOleVariantTypeException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.InvalidOleVariantTypeException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.LCIDConversionAttribute">
+ <summary>Indicates that a method's unmanaged signature expects a locale identifier (LCID) parameter.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.LCIDConversionAttribute.#ctor(System.Int32)">
+ <summary>Initializes a new instance of the <see langword="LCIDConversionAttribute" /> class with the position of the LCID in the unmanaged signature.</summary>
+ <param name="lcid">Indicates the position of the LCID argument in the unmanaged signature, where 0 is the first argument.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.LCIDConversionAttribute.Value">
+ <summary>Gets the position of the LCID argument in the unmanaged signature.</summary>
+ <returns>The position of the LCID argument in the unmanaged signature, where 0 is the first argument.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute">
+ <summary>Provides support for user customization of interop stubs in managed-to-COM interop scenarios.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.#ctor(System.Type,System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute" /> class with the specified class type and method name.</summary>
+ <param name="classType">The class that contains the required stub method.</param>
+ <param name="methodName">The name of the stub method.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="methodName" /> cannot be found.
+-or-
+The method is not static or non-generic.
+-or-
+The method's parameter list does not match the expected parameter list for the stub.</exception>
+ <exception cref="T:System.MethodAccessException">The interface that contains the managed interop method has no access to the stub method, because the stub method has private or protected accessibility, or because of a security issue.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.ClassType">
+ <summary>Gets the class that contains the required stub method.</summary>
+ <returns>The class that contains the customized interop stub.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ManagedToNativeComInteropStubAttribute.MethodName">
+ <summary>Gets the name of the stub method.</summary>
+ <returns>The name of a customized interop stub.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.Marshal">
+ <summary>Provides a collection of methods for allocating unmanaged memory, copying unmanaged memory blocks, and converting managed to unmanaged types, as well as other miscellaneous methods used when interacting with unmanaged code.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.AddRef(System.IntPtr)">
+ <summary>Increments the reference count on the specified interface.</summary>
+ <param name="pUnk">The interface reference count to increment.</param>
+ <returns>The new value of the reference count on the <paramref name="pUnk" /> parameter.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)">
+ <summary>Allocates a block of memory of specified size from the COM task memory allocator.</summary>
+ <param name="cb">The size of the block of memory to be allocated.</param>
+ <returns>An integer representing the address of the block of memory allocated. This memory must be released with <see cref="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to satisfy the request.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.Int32)">
+ <summary>Allocates memory from the unmanaged memory of the process by using the specified number of bytes.</summary>
+ <param name="cb">The required number of bytes in memory.</param>
+ <returns>A pointer to the newly allocated memory. This memory must be released using the <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" /> method.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to satisfy the request.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)">
+ <summary>Allocates memory from the unmanaged memory of the process by using the pointer to the specified number of bytes.</summary>
+ <param name="cb">The required number of bytes in memory.</param>
+ <returns>A pointer to the newly allocated memory. This memory must be released using the <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" /> method.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to satisfy the request.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.AreComObjectsAvailableForCleanup">
+ <summary>Indicates whether runtime callable wrappers (RCWs) from any context are available for cleanup.</summary>
+ <returns>
+ <see langword="true" /> if there are any RCWs available for cleanup; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.BindToMoniker(System.String)">
+ <summary>Gets an interface pointer identified by the specified moniker.</summary>
+ <param name="monikerName">The moniker corresponding to the desired interface pointer.</param>
+ <returns>An object containing a reference to the interface pointer identified by the <paramref name="monikerName" /> parameter. A moniker is a name, and in this case, the moniker is defined by an interface.</returns>
+ <exception cref="T:System.Runtime.InteropServices.COMException">An unrecognized HRESULT was returned by the unmanaged <see langword="BindToMoniker" /> method.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ChangeWrapperHandleStrength(System.Object,System.Boolean)">
+ <summary>Changes the strength of an object's COM Callable Wrapper (CCW) handle.</summary>
+ <param name="otp">The object whose CCW holds a reference counted handle. The handle is strong if the reference count on the CCW is greater than zero; otherwise, it is weak.</param>
+ <param name="fIsWeak">
+ <see langword="true" /> to change the strength of the handle on the <paramref name="otp" /> parameter to weak, regardless of its reference count; <see langword="false" /> to reset the handle strength on <paramref name="otp" /> to be reference counted.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.CleanupUnusedObjectsInCurrentContext">
+ <summary>Notifies the runtime to clean up all Runtime Callable Wrappers (RCWs) allocated in the current context.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Byte[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed 8-bit unsigned integer array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Char[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed character array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Double[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed double-precision floating-point number array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int16[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed 16-bit signed integer array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int32[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed 32-bit signed integer array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="startIndex" /> or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Int64[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed 64-bit signed integer array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed 8-bit unsigned integer array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Char[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed character array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Double[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed double-precision floating-point number array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int16[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed 16-bit signed integer array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int32[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed 32-bit signed integer array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Int64[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed 64-bit signed integer array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.IntPtr[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed <see cref="T:System.IntPtr" /> array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr,System.Single[],System.Int32,System.Int32)">
+ <summary>Copies data from an unmanaged memory pointer to a managed single-precision floating-point number array.</summary>
+ <param name="source">The memory pointer to copy from.</param>
+ <param name="destination">The array to copy to.</param>
+ <param name="startIndex">The zero-based index in the destination array where copying should start.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.IntPtr[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed <see cref="T:System.IntPtr" /> array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="destination" />, <paramref name="startIndex" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Copy(System.Single[],System.Int32,System.IntPtr,System.Int32)">
+ <summary>Copies data from a one-dimensional, managed single-precision floating-point number array to an unmanaged memory pointer.</summary>
+ <param name="source">The one-dimensional array to copy from.</param>
+ <param name="startIndex">The zero-based index in the source array where copying should start.</param>
+ <param name="destination">The memory pointer to copy to.</param>
+ <param name="length">The number of array elements to copy.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="startIndex" /> and <paramref name="length" /> are not valid.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="source" />, <paramref name="startIndex" />, <paramref name="destination" />, or <paramref name="length" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject(System.IntPtr,System.Object)">
+ <summary>Aggregates a managed object with the specified COM object.</summary>
+ <param name="pOuter">The outer <see langword="IUnknown" /> pointer.</param>
+ <param name="o">An object to aggregate.</param>
+ <returns>The inner <see langword="IUnknown" /> pointer of the managed object.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="o" /> is a Windows Runtime object.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.CreateAggregatedObject``1(System.IntPtr,``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Aggregates a managed object of the specified type with the specified COM object.</summary>
+ <param name="pOuter">The outer IUnknown pointer.</param>
+ <param name="o">The managed object to aggregate.</param>
+ <typeparam name="T">The type of the managed object to aggregate.</typeparam>
+ <returns>The inner IUnknown pointer of the managed object.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="o" /> is a Windows Runtime object.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.CreateWrapperOfType(System.Object,System.Type)">
+ <summary>Wraps the specified COM object in an object of the specified type.</summary>
+ <param name="o">The object to be wrapped.</param>
+ <param name="t">The type of wrapper to create.</param>
+ <returns>The newly wrapped object that is an instance of the desired type.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="t" /> must derive from <see langword="__ComObject" />.
+-or-
+<paramref name="t" /> is a Windows Runtime type.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="t" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="o" /> cannot be converted to the destination type because it does not support all required interfaces.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.CreateWrapperOfType``2(``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Wraps the specified COM object in an object of the specified type.</summary>
+ <param name="o">The object to be wrapped.</param>
+ <typeparam name="T">The type of object to wrap.</typeparam>
+ <typeparam name="TWrapper">The type of object to return.</typeparam>
+ <returns>The newly wrapped object.</returns>
+ <exception cref="T:System.ArgumentException">
+ <typeparamref name="T" /> must derive from <see langword="__ComObject" />.
+-or-
+<typeparamref name="T" /> is a Windows Runtime type.</exception>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="o" /> cannot be converted to the <paramref name="TWrapper" /> because it does not support all required interfaces.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.DestroyStructure(System.IntPtr,System.Type)">
+ <summary>Frees all substructures that the specified unmanaged memory block points to.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <param name="structuretype">Type of a formatted class. This provides the layout information necessary to delete the buffer in the <paramref name="ptr" /> parameter.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="structureType" /> has an automatic layout. Use sequential or explicit instead.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.DestroyStructure``1(System.IntPtr)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Frees all substructures of a specified type that the specified unmanaged memory block points to.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <typeparam name="T">The type of the formatted structure. This provides the layout information necessary to delete the buffer in the <paramref name="ptr" /> parameter.</typeparam>
+ <exception cref="T:System.ArgumentException">
+ <typeparamref name="T" /> has an automatic layout. Use sequential or explicit instead.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.FinalReleaseComObject(System.Object)">
+ <summary>Releases all references to a Runtime Callable Wrapper (RCW) by setting its reference count to 0.</summary>
+ <param name="o">The RCW to be released.</param>
+ <returns>The new value of the reference count of the RCW associated with the <paramref name="o" /> parameter, which is 0 (zero) if the release is successful.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="o" /> is not a valid COM object.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="o" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.FreeBSTR(System.IntPtr)">
+ <summary>Frees a <see langword="BSTR" /> using the COM SysFreeString function.</summary>
+ <param name="ptr">The address of the BSTR to be freed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)">
+ <summary>Frees a block of memory allocated by the unmanaged COM task memory allocator.</summary>
+ <param name="ptr">The address of the memory to be freed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)">
+ <summary>Frees memory previously allocated from the unmanaged memory of the process.</summary>
+ <param name="hglobal">The handle returned by the original matching call to <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GenerateGuidForType(System.Type)">
+ <summary>Returns the globally unique identifier (GUID) for the specified type, or generates a GUID using the algorithm used by the Type Library Exporter (Tlbexp.exe).</summary>
+ <param name="type">The type to generate a GUID for.</param>
+ <returns>An identifier for the specified type.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GenerateProgIdForType(System.Type)">
+ <summary>Returns a programmatic identifier (ProgID) for the specified type.</summary>
+ <param name="type">The type to get a ProgID for.</param>
+ <returns>The ProgID of the specified type.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="type" /> parameter is not a class that can be create by COM. The class must be public, have a public parameterless constructor, and be COM visible.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="type" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type)">
+ <summary>Returns a pointer to an IUnknown interface that represents the specified interface on the specified object. Custom query interface access is enabled by default.</summary>
+ <param name="o">The object that provides the interface.</param>
+ <param name="T">The type of interface that is requested.</param>
+ <returns>The interface pointer that represents the specified interface for the object.</returns>
+ <exception cref="T:System.ArgumentException">The <typeparamref name="T" /> parameter is not an interface.
+-or-
+The type is not visible to COM.
+-or-
+The <typeparamref name="T" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.InvalidCastException">The <paramref name="o" /> parameter does not support the requested interface.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="o" /> parameter is <see langword="null" />.
+-or-
+The <typeparamref name="T" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject(System.Object,System.Type,System.Runtime.InteropServices.CustomQueryInterfaceMode)">
+ <summary>Returns a pointer to an IUnknown interface that represents the specified interface on the specified object. Custom query interface access is controlled by the specified customization mode.</summary>
+ <param name="o">The object that provides the interface.</param>
+ <param name="T">The type of interface that is requested.</param>
+ <param name="mode">One of the enumeration values that indicates whether to apply an <see langword="IUnknown::QueryInterface" /> customization that is supplied by an <see cref="T:System.Runtime.InteropServices.ICustomQueryInterface" />.</param>
+ <returns>The interface pointer that represents the interface for the object.</returns>
+ <exception cref="T:System.ArgumentException">The <typeparamref name="T" /> parameter is not an interface.
+-or-
+The type is not visible to COM.
+-or-
+The <typeparamref name="T" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.InvalidCastException">The object <paramref name="o" /> does not support the requested interface.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="o" /> parameter is <see langword="null" />.
+-or-
+The <typeparamref name="T" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetComInterfaceForObject``2(``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Returns a pointer to an IUnknown interface that represents the specified interface on an object of the specified type. Custom query interface access is enabled by default.</summary>
+ <param name="o">The object that provides the interface.</param>
+ <typeparam name="T">The type of <paramref name="o" />.</typeparam>
+ <typeparam name="TInterface">The type of interface to return.</typeparam>
+ <returns>The interface pointer that represents the <paramref name="TInterface" /> interface.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="TInterface" /> parameter is not an interface.
+-or-
+The type is not visible to COM.
+-or-
+The <typeparamref name="T" /> parameter is an open generic type.</exception>
+ <exception cref="T:System.InvalidCastException">The <paramref name="o" /> parameter does not support the <paramref name="TInterface" /> interface.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="o" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetComObjectData(System.Object,System.Object)">
+ <summary>Retrieves data that is referenced by the specified key from the specified COM object.</summary>
+ <param name="obj">The COM object that contains the data that you want.</param>
+ <param name="key">The key in the internal hash table of <paramref name="obj" /> to retrieve the data from.</param>
+ <returns>The data represented by the <paramref name="key" /> parameter in the internal hash table of the <paramref name="obj" /> parameter.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="obj" /> is <see langword="null" />.
+-or-
+<paramref name="key" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="obj" /> is not a COM object.
+-or-
+<paramref name="obj" /> is a Windows Runtime object.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer(System.IntPtr,System.Type)">
+ <summary>Converts an unmanaged function pointer to a delegate.</summary>
+ <param name="ptr">The unmanaged function pointer to be converted.</param>
+ <param name="t">The type of the delegate to be returned.</param>
+ <returns>A delegate instance that can be cast to the appropriate delegate type.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="t" /> parameter is not a delegate or is generic.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="ptr" /> parameter is <see langword="null" />.
+-or-
+The <paramref name="t" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetDelegateForFunctionPointer``1(System.IntPtr)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Converts an unmanaged function pointer to a delegate of a specified type.</summary>
+ <param name="ptr">The unmanaged function pointer to convert.</param>
+ <typeparam name="TDelegate">The type of the delegate to return.</typeparam>
+ <returns>A instance of the specified delegate type.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="TDelegate" /> generic parameter is not a delegate, or it is an open generic type.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="ptr" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetEndComSlot(System.Type)">
+ <summary>Retrieves the last slot in the virtual function table (v-table or VTBL) of a type when exposed to COM.</summary>
+ <param name="t">A type that represents an interface or class.</param>
+ <returns>The last VTBL slot of the interface when exposed to COM. If the <paramref name="t" /> parameter is a class, the returned VTBL slot is the last slot in the interface that is generated from the class.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionCode">
+ <summary>Retrieves a code that identifies the type of the exception that occurred.</summary>
+ <returns>The type of the exception.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32)">
+ <summary>Converts the specified HRESULT error code to a corresponding <see cref="T:System.Exception" /> object.</summary>
+ <param name="errorCode">The HRESULT to be converted.</param>
+ <returns>An object that represents the converted HRESULT, or <see langword="null" /> if the HRESULT value doesn't represent an error code (for example, <see langword="S_OK" /> or <see langword="S_FALSE" />).</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32,System.IntPtr)">
+ <summary>Converts the specified HRESULT error code to a corresponding <see cref="T:System.Exception" /> object, with additional error information passed in an IErrorInfo interface for the exception object.</summary>
+ <param name="errorCode">The HRESULT to be converted.</param>
+ <param name="errorInfo">A pointer to the <see langword="IErrorInfo" /> interface that provides more information about the error. You can specify <c>IntPtr(0)</c> to use the current <see langword="IErrorInfo" /> interface, or <c>IntPtr(-1)</c> to ignore the current <see langword="IErrorInfo" /> interface and construct the exception just from the error code.</param>
+ <returns>An object that represents the converted HRESULT and information obtained from <paramref name="errorInfo" />, or <see langword="null" /> if an HRESULT value doesn't represent an error code (for example, <see langword="S_OK" /> or <see langword="S_FALSE" />).</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetExceptionPointers">
+ <summary>Retrieves a computer-independent description of an exception, and information about the state that existed for the thread when the exception occurred.</summary>
+ <returns>A pointer to an EXCEPTION_POINTERS structure.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate(System.Delegate)">
+ <summary>Converts a delegate into a function pointer that is callable from unmanaged code.</summary>
+ <param name="d">The delegate to be passed to unmanaged code.</param>
+ <returns>A value that can be passed to unmanaged code, which, in turn, can use it to call the underlying managed delegate.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="d" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="d" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate``1(``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Converts a delegate of a specified type to a function pointer that is callable from unmanaged code.</summary>
+ <param name="d">The delegate to be passed to unmanaged code.</param>
+ <typeparam name="TDelegate">The type of delegate to convert.</typeparam>
+ <returns>A value that can be passed to unmanaged code, which, in turn, can use it to call the underlying managed delegate.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="d" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="d" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetHINSTANCE(System.Reflection.Module)">
+ <summary>Returns the instance handle (HINSTANCE) for the specified module.</summary>
+ <param name="m">The module whose HINSTANCE is desired.</param>
+ <returns>The HINSTANCE for <paramref name="m" />; or -1 if the module does not have an HINSTANCE.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="m" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetHRForException(System.Exception)">
+ <summary>Converts the specified exception to an HRESULT.</summary>
+ <param name="e">The exception to convert to an HRESULT.</param>
+ <returns>The HRESULT mapped to the supplied exception.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetHRForLastWin32Error">
+ <summary>Returns the HRESULT corresponding to the last error incurred by Win32 code executed using <see cref="T:System.Runtime.InteropServices.Marshal" />.</summary>
+ <returns>The HRESULT corresponding to the last Win32 error code.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetIDispatchForObject(System.Object)">
+ <summary>Returns an IDispatch interface from a managed object.</summary>
+ <param name="o">The object whose <see langword="IDispatch" /> interface is requested.</param>
+ <returns>The <see langword="IDispatch" /> pointer for the <paramref name="o" /> parameter.</returns>
+ <exception cref="T:System.InvalidCastException">
+ <paramref name="o" /> does not support the requested interface.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetIUnknownForObject(System.Object)">
+ <summary>Returns an IUnknown interface from a managed object.</summary>
+ <param name="o">The object whose <see langword="IUnknown" /> interface is requested.</param>
+ <returns>The <see langword="IUnknown" /> pointer for the <paramref name="o" /> parameter.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error">
+ <summary>Returns the error code returned by the last unmanaged function that was called using platform invoke that has the <see cref="F:System.Runtime.InteropServices.DllImportAttribute.SetLastError" /> flag set.</summary>
+ <returns>The last error code set by a call to the Win32 SetLastError function.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetNativeVariantForObject(System.Object,System.IntPtr)">
+ <summary>Converts an object to a COM VARIANT.</summary>
+ <param name="obj">The object for which to get a COM VARIANT.</param>
+ <param name="pDstNativeVariant">A pointer to receive the VARIANT that corresponds to the <paramref name="obj" /> parameter.</param>
+ <exception cref="T:System.ArgumentException">The <paramref name="obj" /> parameter is an instance of a generic type.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetNativeVariantForObject``1(``0,System.IntPtr)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Converts an object of a specified type to a COM VARIANT.</summary>
+ <param name="obj">The object for which to get a COM VARIANT.</param>
+ <param name="pDstNativeVariant">A pointer to receive the VARIANT that corresponds to the <paramref name="obj" /> parameter.</param>
+ <typeparam name="T">The type of the object to convert.</typeparam>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetObjectForIUnknown(System.IntPtr)">
+ <summary>Returns an instance of a type that represents a COM object by a pointer to its IUnknown interface.</summary>
+ <param name="pUnk">A pointer to the <see langword="IUnknown" /> interface.</param>
+ <returns>An object that represents the specified unmanaged COM object.</returns>
+ <exception cref="">
+ <paramref name="pUnk" /> is <see cref="F:System.IntPtr.Zero" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetObjectForNativeVariant(System.IntPtr)">
+ <summary>Converts a COM VARIANT to an object.</summary>
+ <param name="pSrcNativeVariant">A pointer to a COM VARIANT.</param>
+ <returns>An object that corresponds to the <paramref name="pSrcNativeVariant" /> parameter.</returns>
+ <exception cref="T:System.Runtime.InteropServices.InvalidOleVariantTypeException">
+ <paramref name="pSrcNativeVariant" /> is not a valid VARIANT type.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="pSrcNativeVariant" /> has an unsupported type.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetObjectForNativeVariant``1(System.IntPtr)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Converts a COM VARIANT to an object of a specified type.</summary>
+ <param name="pSrcNativeVariant">A pointer to a COM VARIANT.</param>
+ <typeparam name="T">The type to which to convert the COM VARIANT.</typeparam>
+ <returns>An object of the specified type that corresponds to the <paramref name="pSrcNativeVariant" /> parameter.</returns>
+ <exception cref="T:System.Runtime.InteropServices.InvalidOleVariantTypeException">
+ <paramref name="pSrcNativeVariant" /> is not a valid VARIANT type.</exception>
+ <exception cref="T:System.NotSupportedException">
+ <paramref name="pSrcNativeVariant" /> has an unsupported type.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetObjectsForNativeVariants(System.IntPtr,System.Int32)">
+ <summary>Converts an array of COM VARIANTs to an array of objects.</summary>
+ <param name="aSrcNativeVariant">A pointer to the first element of an array of COM VARIANTs.</param>
+ <param name="cVars">The count of COM VARIANTs in <paramref name="aSrcNativeVariant" />.</param>
+ <returns>An object array that corresponds to <paramref name="aSrcNativeVariant" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="cVars" /> is a negative number.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetObjectsForNativeVariants``1(System.IntPtr,System.Int32)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Converts an array of COM VARIANTs to an array of a specified type.</summary>
+ <param name="aSrcNativeVariant">A pointer to the first element of an array of COM VARIANTs.</param>
+ <param name="cVars">The count of COM VARIANTs in <paramref name="aSrcNativeVariant" />.</param>
+ <typeparam name="T">The type of the array to return.</typeparam>
+ <returns>An array of <typeparamref name="T" /> objects that corresponds to <paramref name="aSrcNativeVariant" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="cVars" /> is a negative number.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetStartComSlot(System.Type)">
+ <summary>Gets the first slot in the virtual function table (v-table or VTBL) that contains user-defined methods.</summary>
+ <param name="t">A type that represents an interface or a class.</param>
+ <returns>The first VTBL slot that contains user-defined methods. The first slot is 3 if the interface is based on IUnknown, and 7 if the interface is based on IDispatch.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="t" /> is not visible from COM.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetTypedObjectForIUnknown(System.IntPtr,System.Type)">
+ <summary>Returns a managed object of a specified type that represents a COM object.</summary>
+ <param name="pUnk">A pointer to the <see langword="IUnknown" /> interface of the unmanaged object.</param>
+ <param name="t">The type of the requested managed class.</param>
+ <returns>An instance of the class corresponding to the <see cref="T:System.Type" /> object that represents the requested unmanaged COM object.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="t" /> is not attributed with <see cref="T:System.Runtime.InteropServices.ComImportAttribute" />.
+-or-
+<paramref name="t" /> is a Windows Runtime type.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetTypeFromCLSID(System.Guid)">
+ <summary>Returns the type associated with the specified class identifier (CLSID).</summary>
+ <param name="clsid">The CLSID of the type to return.</param>
+ <returns>
+ <see langword="System.__ComObject" /> regardless of whether the CLSID is valid.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetTypeInfoName(System.Runtime.InteropServices.ComTypes.ITypeInfo)">
+ <summary>Retrieves the name of the type represented by an ITypeInfo object.</summary>
+ <param name="typeInfo">An object that represents an <see langword="ITypeInfo" /> pointer.</param>
+ <returns>The name of the type that the <paramref name="typeInfo" /> parameter points to.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="typeInfo" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.GetUniqueObjectForIUnknown(System.IntPtr)">
+ <summary>Creates a unique Runtime Callable Wrapper (RCW) object for a given IUnknown interface.</summary>
+ <param name="unknown">A managed pointer to an <see langword="IUnknown" /> interface.</param>
+ <returns>A unique RCW for the specified <see langword="IUnknown" /> interface.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.IsComObject(System.Object)">
+ <summary>Indicates whether a specified object represents a COM object.</summary>
+ <param name="o">The object to check.</param>
+ <returns>
+ <see langword="true" /> if the <paramref name="o" /> parameter is a COM type; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="o" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.IsTypeVisibleFromCom(System.Type)">
+ <summary>Indicates whether a type is visible to COM clients.</summary>
+ <param name="t">The type to check for COM visibility.</param>
+ <returns>
+ <see langword="true" /> if the type is visible to COM; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.OffsetOf(System.Type,System.String)">
+ <summary>Returns the field offset of the unmanaged form of the managed class.</summary>
+ <param name="t">A value type or formatted reference type that specifies the managed class. You must apply the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> to the class.</param>
+ <param name="fieldName">The field within the <paramref name="t" /> parameter.</param>
+ <returns>The offset, in bytes, for the <paramref name="fieldName" /> parameter within the specified class that is declared by platform invoke.</returns>
+ <exception cref="T:System.ArgumentException">The class cannot be exported as a structure or the field is nonpublic. Beginning with the .NET Framework version 2.0, the field may be private.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="t" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.OffsetOf``1(System.String)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Returns the field offset of the unmanaged form of a specified managed class.</summary>
+ <param name="fieldName">The name of the field in the <paramref name="T" /> type.</param>
+ <typeparam name="T">A managed value type or formatted reference type. You must apply the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> attribute to the class.</typeparam>
+ <returns>The offset, in bytes, for the <paramref name="fieldName" /> parameter within the specified class that is declared by platform invoke.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Prelink(System.Reflection.MethodInfo)">
+ <summary>Executes one-time method setup tasks without calling the method.</summary>
+ <param name="m">The method to be checked.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="m" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The <paramref name="m" /> parameter is not a <see cref="T:System.Reflection.MethodInfo" /> object.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PrelinkAll(System.Type)">
+ <summary>Performs a pre-link check for all methods on a class.</summary>
+ <param name="c">The class whose methods are to be checked.</param>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="c" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAnsi(System.IntPtr)">
+ <summary>Copies all characters up to the first null character from an unmanaged ANSI string to a managed <see cref="T:System.String" />, and widens each ANSI character to Unicode.</summary>
+ <param name="ptr">The address of the first character of the unmanaged string.</param>
+ <returns>A managed string that holds a copy of the unmanaged ANSI string. If <paramref name="ptr" /> is <see langword="null" />, the method returns a null string.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAnsi(System.IntPtr,System.Int32)">
+ <summary>Allocates a managed <see cref="T:System.String" />, copies a specified number of characters from an unmanaged ANSI string into it, and widens each ANSI character to Unicode.</summary>
+ <param name="ptr">The address of the first character of the unmanaged string.</param>
+ <param name="len">The byte count of the input string to copy.</param>
+ <returns>A managed string that holds a copy of the native ANSI string if the value of the <paramref name="ptr" /> parameter is not <see langword="null" />; otherwise, this method returns <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="len" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAuto(System.IntPtr)">
+ <summary>Allocates a managed <see cref="T:System.String" /> and copies all characters up to the first null character from a string stored in unmanaged memory into it.</summary>
+ <param name="ptr">For Unicode platforms, the address of the first Unicode character.
+-or-
+For ANSI platforms, the address of the first ANSI character.</param>
+ <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr" /> parameter is not <see langword="null" />; otherwise, this method returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringAuto(System.IntPtr,System.Int32)">
+ <summary>Allocates a managed <see cref="T:System.String" /> and copies the specified number of characters from a string stored in unmanaged memory into it.</summary>
+ <param name="ptr">For Unicode platforms, the address of the first Unicode character.
+-or-
+For ANSI platforms, the address of the first ANSI character.</param>
+ <param name="len">The number of characters to copy.</param>
+ <returns>A managed string that holds a copy of the native string if the value of the <paramref name="ptr" /> parameter is not <see langword="null" />; otherwise, this method returns <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="len" /> is less than zero.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringBSTR(System.IntPtr)">
+ <summary>Allocates a managed <see cref="T:System.String" /> and copies a binary string (BSTR) stored in unmanaged memory into it.</summary>
+ <param name="ptr">The address of the first character of the unmanaged string.</param>
+ <returns>A managed string that holds a copy of the unmanaged string.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="ptr" /> equals <see cref="F:System.IntPtr.Zero" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUni(System.IntPtr)">
+ <summary>Allocates a managed <see cref="T:System.String" /> and copies all characters up to the first null character from an unmanaged Unicode string into it.</summary>
+ <param name="ptr">The address of the first character of the unmanaged string.</param>
+ <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr" /> parameter is not <see langword="null" />; otherwise, this method returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUni(System.IntPtr,System.Int32)">
+ <summary>Allocates a managed <see cref="T:System.String" /> and copies a specified number of characters from an unmanaged Unicode string into it.</summary>
+ <param name="ptr">The address of the first character of the unmanaged string.</param>
+ <param name="len">The number of Unicode characters to copy.</param>
+ <returns>A managed string that holds a copy of the unmanaged string if the value of the <paramref name="ptr" /> parameter is not <see langword="null" />; otherwise, this method returns <see langword="null" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUTF8(System.IntPtr)">
+ <param name="ptr" />
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStringUTF8(System.IntPtr,System.Int32)">
+ <param name="ptr" />
+ <param name="byteLen" />
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure(System.IntPtr,System.Object)">
+ <summary>Marshals data from an unmanaged block of memory to a managed object.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <param name="structure">The object to which the data is to be copied. This must be an instance of a formatted class.</param>
+ <exception cref="T:System.ArgumentException">Structure layout is not sequential or explicit.
+-or-
+Structure is a boxed value type.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure(System.IntPtr,System.Type)">
+ <summary>Marshals data from an unmanaged block of memory to a newly allocated managed object of the specified type.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <param name="structureType">The type of object to be created. This object must represent a formatted class or a structure.</param>
+ <returns>A managed object containing the data pointed to by the <paramref name="ptr" /> parameter.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="structureType" /> parameter layout is not sequential or explicit.
+-or-
+The <paramref name="structureType" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="structureType" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.MissingMethodException">The class specified by <paramref name="structureType" /> does not have an accessible parameterless constructor.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure``1(System.IntPtr)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Marshals data from an unmanaged block of memory to a newly allocated managed object of the type specified by a generic type parameter.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <typeparam name="T">The type of the object to which the data is to be copied. This must be a formatted class or a structure.</typeparam>
+ <returns>A managed object that contains the data that the <paramref name="ptr" /> parameter points to.</returns>
+ <exception cref="T:System.ArgumentException">The layout of <typeparamref name="T" /> is not sequential or explicit.</exception>
+ <exception cref="T:System.MissingMethodException">The class specified by <typeparamref name="T" /> does not have an accessible parameterless constructor.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.PtrToStructure``1(System.IntPtr,``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Marshals data from an unmanaged block of memory to a managed object of the specified type.</summary>
+ <param name="ptr">A pointer to an unmanaged block of memory.</param>
+ <param name="structure">The object to which the data is to be copied.</param>
+ <typeparam name="T">The type of <paramref name="structure" />. This must be a formatted class.</typeparam>
+ <exception cref="T:System.ArgumentException">Structure layout is not sequential or explicit.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.QueryInterface(System.IntPtr,System.Guid@,System.IntPtr@)">
+ <summary>Requests a pointer to a specified interface from a COM object.</summary>
+ <param name="pUnk">The interface to be queried.</param>
+ <param name="iid">The interface identifier (IID) of the requested interface.</param>
+ <param name="ppv">When this method returns, contains a reference to the returned interface.</param>
+ <returns>An HRESULT that indicates the success or failure of the call.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.IntPtr)">
+ <summary>Reads a single byte from unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory from which to read.</param>
+ <returns>The byte read from unmanaged memory.</returns>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.IntPtr,System.Int32)">
+ <summary>Reads a single byte at a given offset (or index) from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory from which to read.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The byte read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadByte(System.Object,System.Int32)">
+ <summary>Reads a single byte at a given offset (or index) from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the source object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The byte read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.IntPtr)">
+ <summary>Reads a 16-bit signed integer from unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory from which to read.</param>
+ <returns>The 16-bit signed integer read from unmanaged memory.</returns>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.IntPtr,System.Int32)">
+ <summary>Reads a 16-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory from which to read.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 16-bit signed integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt16(System.Object,System.Int32)">
+ <summary>Reads a 16-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the source object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 16-bit signed integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.IntPtr)">
+ <summary>Reads a 32-bit signed integer from unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory from which to read.</param>
+ <returns>The 32-bit signed integer read from unmanaged memory.</returns>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.IntPtr,System.Int32)">
+ <summary>Reads a 32-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory from which to read.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 32-bit signed integer read from unmanaged memory.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt32(System.Object,System.Int32)">
+ <summary>Reads a 32-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the source object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 32-bit signed integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.IntPtr)">
+ <summary>Reads a 64-bit signed integer from unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory from which to read.</param>
+ <returns>The 64-bit signed integer read from unmanaged memory.</returns>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.IntPtr,System.Int32)">
+ <summary>Reads a 64-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory from which to read.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 64-bit signed integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadInt64(System.Object,System.Int32)">
+ <summary>Reads a 64-bit signed integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the source object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The 64-bit signed integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.IntPtr)">
+ <summary>Reads a processor native-sized integer from unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory from which to read.</param>
+ <returns>The integer read from unmanaged memory. A 32 bit integer is returned on 32 bit machines and a 64 bit integer is returned on 64 bit machines.</returns>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.IntPtr,System.Int32)">
+ <summary>Reads a processor native sized integer at a given offset from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory from which to read.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReadIntPtr(System.Object,System.Int32)">
+ <summary>Reads a processor native sized integer from unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the source object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before reading.</param>
+ <returns>The integer read from unmanaged memory at the given offset.</returns>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReAllocCoTaskMem(System.IntPtr,System.Int32)">
+ <summary>Resizes a block of memory previously allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)" />.</summary>
+ <param name="pv">A pointer to memory allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Int32)" />.</param>
+ <param name="cb">The new size of the allocated block.</param>
+ <returns>An integer representing the address of the reallocated block of memory. This memory must be released with <see cref="M:System.Runtime.InteropServices.Marshal.FreeCoTaskMem(System.IntPtr)" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to satisfy the request.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReAllocHGlobal(System.IntPtr,System.IntPtr)">
+ <summary>Resizes a block of memory previously allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />.</summary>
+ <param name="pv">A pointer to memory allocated with <see cref="M:System.Runtime.InteropServices.Marshal.AllocHGlobal(System.IntPtr)" />.</param>
+ <param name="cb">The new size of the allocated block. This is not a pointer; it is the byte count you are requesting, cast to type <see cref="T:System.IntPtr" />. If you pass a pointer, it is treated as a size.</param>
+ <returns>A pointer to the reallocated memory. This memory must be released using <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory to satisfy the request.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.Release(System.IntPtr)">
+ <summary>Decrements the reference count on the specified interface.</summary>
+ <param name="pUnk">The interface to release.</param>
+ <returns>The new value of the reference count on the interface specified by the <paramref name="pUnk" /> parameter.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ReleaseComObject(System.Object)">
+ <summary>Decrements the reference count of the Runtime Callable Wrapper (RCW) associated with the specified COM object.</summary>
+ <param name="o">The COM object to release.</param>
+ <returns>The new value of the reference count of the RCW associated with <paramref name="o" />. This value is typically zero since the RCW keeps just one reference to the wrapped COM object regardless of the number of managed clients calling it.</returns>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="o" /> is not a valid COM object.</exception>
+ <exception cref="T:System.NullReferenceException">
+ <paramref name="o" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToBSTR(System.Security.SecureString)">
+ <summary>Allocates an unmanaged binary string (BSTR) and copies the contents of a managed <see cref="T:System.Security.SecureString" /> object into it.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemAnsi(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocAnsi(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> into unmanaged memory, converting into ANSI format as it copies.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, to where the <paramref name="s" /> parameter was copied, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocUnicode(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object into unmanaged memory.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where <paramref name="s" /> was copied, or 0 if <paramref name="s" /> is a <see cref="T:System.Security.SecureString" /> object whose length is 0.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SetComObjectData(System.Object,System.Object,System.Object)">
+ <summary>Sets data referenced by the specified key in the specified COM object.</summary>
+ <param name="obj">The COM object in which to store the data.</param>
+ <param name="key">The key in the internal hash table of the COM object in which to store the data.</param>
+ <param name="data">The data to set.</param>
+ <returns>
+ <see langword="true" /> if the data was set successfully; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="obj" /> is <see langword="null" />.
+-or-
+<paramref name="key" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="obj" /> is not a COM object.
+-or-
+<paramref name="obj" /> is a Windows Runtime object.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SizeOf(System.Object)">
+ <summary>Returns the unmanaged size of an object in bytes.</summary>
+ <param name="structure">The object whose size is to be returned.</param>
+ <returns>The size of the specified object in unmanaged code.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="structure" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SizeOf(System.Type)">
+ <summary>Returns the size of an unmanaged type in bytes.</summary>
+ <param name="t">The type whose size is to be returned.</param>
+ <returns>The size of the specified type in unmanaged code.</returns>
+ <exception cref="T:System.ArgumentException">The <paramref name="t" /> parameter is a generic type definition.</exception>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="t" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SizeOf``1">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Returns the size of an unmanaged type in bytes.</summary>
+ <typeparam name="T">The type whose size is to be returned.</typeparam>
+ <returns>The size, in bytes, of the type that is specified by the <typeparamref name="T" /> generic type parameter.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.SizeOf``1(``0)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Returns the unmanaged size of an object of a specified type in bytes.</summary>
+ <param name="structure">The object whose size is to be returned.</param>
+ <typeparam name="T">The type of the <paramref name="structure" /> parameter.</typeparam>
+ <returns>The size, in bytes, of the specified object in unmanaged code.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="structure" /> parameter is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToBSTR(System.String)">
+ <summary>Allocates a BSTR and copies the contents of a managed <see cref="T:System.String" /> into it.</summary>
+ <param name="s">The managed string to be copied.</param>
+ <returns>An unmanaged pointer to the <see langword="BSTR" />, or 0 if <paramref name="s" /> is null.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length for <paramref name="s" /> is out of range.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemAnsi(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>An integer representing a pointer to the block of memory allocated for the string, or 0 if <paramref name="s" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemAuto(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>The allocated memory block, or 0 if <paramref name="s" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The length for <paramref name="s" /> is out of range.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemUni(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>An integer representing a pointer to the block of memory allocated for the string, or 0 if s is <see langword="null" />.</returns>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToCoTaskMemUTF8(System.String)">
+ <param name="s" />
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory, converting into ANSI format as it copies.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>The address, in unmanaged memory, to where <paramref name="s" /> was copied, or 0 if <paramref name="s" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalAuto(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory, converting into ANSI format if required.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>The address, in unmanaged memory, to where the string was copied, or 0 if <paramref name="s" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StringToHGlobalUni(System.String)">
+ <summary>Copies the contents of a managed <see cref="T:System.String" /> into unmanaged memory.</summary>
+ <param name="s">A managed string to be copied.</param>
+ <returns>The address, in unmanaged memory, to where the <paramref name="s" /> was copied, or 0 if <paramref name="s" /> is <see langword="null" />.</returns>
+ <exception cref="T:System.OutOfMemoryException">The method could not allocate enough native heap memory.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">The <paramref name="s" /> parameter exceeds the maximum length allowed by the operating system.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StructureToPtr(System.Object,System.IntPtr,System.Boolean)">
+ <summary>Marshals data from a managed object to an unmanaged block of memory.</summary>
+ <param name="structure">A managed object that holds the data to be marshaled. This object must be a structure or an instance of a formatted class.</param>
+ <param name="ptr">A pointer to an unmanaged block of memory, which must be allocated before this method is called.</param>
+ <param name="fDeleteOld">
+ <see langword="true" /> to call the <see cref="M:System.Runtime.InteropServices.Marshal.DestroyStructure(System.IntPtr,System.Type)" /> method on the <paramref name="ptr" /> parameter before this method copies the data. The block must contain valid data. Note that passing <see langword="false" /> when the memory block already contains data can lead to a memory leak.</param>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="structure" /> is a reference type that is not a formatted class.
+-or-
+<paramref name="structure" /> is an instance of a generic type (in the .NET Framework 4.5 and earlier versions only).</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.StructureToPtr``1(``0,System.IntPtr,System.Boolean)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Marshals data from a managed object of a specified type to an unmanaged block of memory.</summary>
+ <param name="structure">A managed object that holds the data to be marshaled. The object must be a structure or an instance of a formatted class.</param>
+ <param name="ptr">A pointer to an unmanaged block of memory, which must be allocated before this method is called.</param>
+ <param name="fDeleteOld">
+ <see langword="true" /> to call the <see cref="M:System.Runtime.InteropServices.Marshal.DestroyStructure``1(System.IntPtr)" /> method on the <paramref name="ptr" /> parameter before this method copies the data. The block must contain valid data. Note that passing <see langword="false" /> when the memory block already contains data can lead to a memory leak.</param>
+ <typeparam name="T">The type of the managed object.</typeparam>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="structure" /> is a reference type that is not a formatted class.</exception>
+ </member>
+ <member name="F:System.Runtime.InteropServices.Marshal.SystemDefaultCharSize">
+ <summary>Represents the default character size on the system; the default is 2 for Unicode systems and 1 for ANSI systems. This field is read-only.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.Marshal.SystemMaxDBCSCharSize">
+ <summary>Represents the maximum size of a double byte character set (DBCS) size, in bytes, for the current operating system. This field is read-only.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(System.Int32)">
+ <summary>Throws an exception with a specific failure HRESULT value.</summary>
+ <param name="errorCode">The HRESULT corresponding to the desired exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(System.Int32,System.IntPtr)">
+ <summary>Throws an exception with a specific failure HRESULT, based on the specified IErrorInfo.aspx) interface.</summary>
+ <param name="errorCode">The HRESULT corresponding to the desired exception.</param>
+ <param name="errorInfo">A pointer to the IErrorInfo interface that provides more information about the error. You can specify <c>IntPtr(0)</c> to use the current IErrorInfo interface, or <c>IntPtr(-1)</c> to ignore the current IErrorInfo interface and construct the exception just from the error code.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.UnsafeAddrOfPinnedArrayElement(System.Array,System.Int32)">
+ <summary>Gets the address of the element at the specified index inside the specified array.</summary>
+ <param name="arr">The array that contains the desired element.</param>
+ <param name="index">The index in the <paramref name="arr" /> parameter of the desired element.</param>
+ <returns>The address of <paramref name="index" /> inside <paramref name="arr" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.UnsafeAddrOfPinnedArrayElement``1(``0[],System.Int32)">
+ <summary>[Supported in the .NET Framework 4.5.1 and later versions]
+Gets the address of the element at the specified index in an array of a specified type.</summary>
+ <param name="arr">The array that contains the desired element.</param>
+ <param name="index">The index of the desired element in the <paramref name="arr" /> array.</param>
+ <typeparam name="T">The type of the array.</typeparam>
+ <returns>The address of <paramref name="index" /> in <paramref name="arr" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.IntPtr,System.Byte)">
+ <summary>Writes a single byte value to unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.IntPtr,System.Int32,System.Byte)">
+ <summary>Writes a single byte value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory to write to.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteByte(System.Object,System.Int32,System.Byte)">
+ <summary>Writes a single byte value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Char)">
+ <summary>Writes a character as a 16-bit integer value to unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int16)">
+ <summary>Writes a 16-bit integer value to unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int32,System.Char)">
+ <summary>Writes a 16-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in the native heap to write to.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.IntPtr,System.Int32,System.Int16)">
+ <summary>Writes a 16-bit signed integer value into unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory to write to.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.Object,System.Int32,System.Char)">
+ <summary>Writes a 16-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt16(System.Object,System.Int32,System.Int16)">
+ <summary>Writes a 16-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.IntPtr,System.Int32)">
+ <summary>Writes a 32-bit signed integer value to unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.IntPtr,System.Int32,System.Int32)">
+ <summary>Writes a 32-bit signed integer value into unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory to write to.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt32(System.Object,System.Int32,System.Int32)">
+ <summary>Writes a 32-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.IntPtr,System.Int32,System.Int64)">
+ <summary>Writes a 64-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory to write.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.IntPtr,System.Int64)">
+ <summary>Writes a 64-bit signed integer value to unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteInt64(System.Object,System.Int32,System.Int64)">
+ <summary>Writes a 64-bit signed integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.IntPtr,System.Int32,System.IntPtr)">
+ <summary>Writes a processor native-sized integer value to unmanaged memory at a specified offset.</summary>
+ <param name="ptr">The base address in unmanaged memory to write to.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.IntPtr,System.IntPtr)">
+ <summary>Writes a processor native sized integer value into unmanaged memory.</summary>
+ <param name="ptr">The address in unmanaged memory to write to.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">
+ <paramref name="ptr" /> is not a recognized format.
+-or-
+<paramref name="ptr" /> is <see langword="null" />.
+-or-
+<paramref name="ptr" /> is invalid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.WriteIntPtr(System.Object,System.Int32,System.IntPtr)">
+ <summary>Writes a processor native sized integer value to unmanaged memory.</summary>
+ <param name="ptr">The base address in unmanaged memory of the target object.</param>
+ <param name="ofs">An additional byte offset, which is added to the <paramref name="ptr" /> parameter before writing.</param>
+ <param name="val">The value to write.</param>
+ <exception cref="T:System.AccessViolationException">Base address (<paramref name="ptr" />) plus offset byte (<paramref name="ofs" />) produces a null or invalid address.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="ptr" /> is an <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> object. This method does not accept <see cref="T:System.Runtime.InteropServices.ArrayWithOffset" /> parameters.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeBSTR(System.IntPtr)">
+ <summary>Frees a BSTR pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToBSTR(System.Security.SecureString)" /> method.</summary>
+ <param name="s">The address of the <see langword="BSTR" /> to free.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeCoTaskMemAnsi(System.IntPtr)">
+ <summary>Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemAnsi(System.Security.SecureString)" /> method.</summary>
+ <param name="s">The address of the unmanaged string to free.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeCoTaskMemUnicode(System.IntPtr)">
+ <summary>Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)" /> method.</summary>
+ <param name="s">The address of the unmanaged string to free.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeCoTaskMemUTF8(System.IntPtr)">
+ <param name="s" />
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeGlobalAllocAnsi(System.IntPtr)">
+ <summary>Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocAnsi(System.Security.SecureString)" /> method.</summary>
+ <param name="s">The address of the unmanaged string to free.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.Marshal.ZeroFreeGlobalAllocUnicode(System.IntPtr)">
+ <summary>Frees an unmanaged string pointer that was allocated using the <see cref="M:System.Runtime.InteropServices.Marshal.SecureStringToGlobalAllocUnicode(System.Security.SecureString)" /> method.</summary>
+ <param name="s">The address of the unmanaged string to free.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.MarshalAsAttribute">
+ <summary>Indicates how to marshal the data between managed and unmanaged code.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalAsAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value.</summary>
+ <param name="unmanagedType">The value the data is to be marshaled as.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalAsAttribute.#ctor(System.Runtime.InteropServices.UnmanagedType)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> enumeration member.</summary>
+ <param name="unmanagedType">The value the data is to be marshaled as.</param>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.ArraySubType">
+ <summary>Specifies the element type of the unmanaged <see cref="F:System.Runtime.InteropServices.UnmanagedType.LPArray" /> or <see cref="F:System.Runtime.InteropServices.UnmanagedType.ByValArray" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.IidParameterIndex">
+ <summary>Specifies the parameter index of the unmanaged <see langword="iid_is" /> attribute used by COM.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalCookie">
+ <summary>Provides additional information to a custom marshaler.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType">
+ <summary>Specifies the fully qualified name of a custom marshaler.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalTypeRef">
+ <summary>Implements <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType" /> as a type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArraySubType">
+ <summary>Indicates the element type of the <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArrayUserDefinedSubType">
+ <summary>Indicates the user-defined element type of the <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst">
+ <summary>Indicates the number of elements in the fixed-length array or the number of characters (not bytes) in a string to import.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeParamIndex">
+ <summary>Indicates the zero-based parameter that contains the count of array elements, similar to <see langword="size_is" /> in COM.</summary>
+ </member>
+ <member name="P:System.Runtime.InteropServices.MarshalAsAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> value the data is to be marshaled as.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.MarshalDirectiveException">
+ <summary>The exception that is thrown by the marshaler when it encounters a <see cref="T:System.Runtime.InteropServices.MarshalAsAttribute" /> it does not support.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor">
+ <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class with default properties.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="MarshalDirectiveException" /> class with a specified error message.</summary>
+ <param name="message">The error message that specifies the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.MarshalDirectiveException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.MarshalDirectiveException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.NativeLibrary">
+ <summary>Provides APIs for managing native libraries.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.Free(System.IntPtr)">
+ <summary>Frees a loaded library with the specified OS handle, or takes no action if the input handle is <see cref="F:System.IntPtr.Zero" />.</summary>
+ <param name="handle">The native library OS handle to be freed.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.GetExport(System.IntPtr,System.String)">
+ <summary>Gets the address of an exported symbol.</summary>
+ <param name="handle">The native library OS handle.</param>
+ <param name="name">The name of the exported symbol.</param>
+ <returns>The address of the symbol.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="handle" /> or <paramref name="name" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.EntryPointNotFoundException">The symbol is not found.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.Load(System.String)">
+ <summary>Provides a simple API for loading a native library that wraps the OS loader and uses default flags.</summary>
+ <param name="libraryPath">The name of the native library to be loaded.</param>
+ <returns>The OS handle for the loaded native library.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="libraryPath" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.DllNotFoundException">The library can't be found.</exception>
+ <exception cref="T:System.BadImageFormatException">The library is not valid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.Load(System.String,System.Reflection.Assembly,System.Nullable{System.Runtime.InteropServices.DllImportSearchPath})">
+ <summary>Provides a high-level API for loading a native library.</summary>
+ <param name="libraryName">The name of the native library to be loaded.</param>
+ <param name="assembly">The assembly loading the native library.</param>
+ <param name="searchPath">The search path.</param>
+ <returns>The OS handle for the loaded library.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="libraryName" /> or <paramref name="assembly" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="assembly" /> is not a <see langword="RuntimeAssembly" />.</exception>
+ <exception cref="T:System.DllNotFoundException">The library can't be found.</exception>
+ <exception cref="T:System.BadImageFormatException">The library is not valid.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.SetDllImportResolver(System.Reflection.Assembly,System.Runtime.InteropServices.DllImportResolver)">
+ <summary>Sets a callback for resolving native library imports from an assembly.</summary>
+ <param name="assembly">The assembly for which the resolver is registered.</param>
+ <param name="resolver">The resolver callback to register.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="assembly" /> or paramref name="resolver" /&gt; is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">A resolver is already set for this assembly.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.TryGetExport(System.IntPtr,System.String,System.IntPtr@)">
+ <summary>Gets the address of an exported symbol and returns a value that indicates whether the method call succeeded.</summary>
+ <param name="handle">The native library OS handle.</param>
+ <param name="name">The name of the exported symbol.</param>
+ <param name="address">When the method returns, contains the symbol address, if it exists.</param>
+ <returns>
+ <see langword="true" /> if the method returned successfully; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="handle" /> or <paramref name="name" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.TryLoad(System.String,System.IntPtr@)">
+ <summary>Provides a simple API for loading a native library and returns a value that indicates whether the operation succeeded.</summary>
+ <param name="libraryPath">The name of the native library to be loaded.</param>
+ <param name="handle">When the method returns, the OS handle of the loaded native library.</param>
+ <returns>
+ <see langword="true" /> if the native library was loaded successful; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="libraryPath" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.NativeLibrary.TryLoad(System.String,System.Reflection.Assembly,System.Nullable{System.Runtime.InteropServices.DllImportSearchPath},System.IntPtr@)">
+ <summary>Provides a high-level API that loads a native library and returns a value that indicates whether the operation succeeded.</summary>
+ <param name="libraryName">The name of the native library to be loaded.</param>
+ <param name="assembly">The assembly loading the native library.</param>
+ <param name="searchPath">The search path.</param>
+ <param name="handle">When the method returns, the OS handle of the loaded native library.</param>
+ <returns>
+ <see langword="true" /> if the load operation was successful; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="libraryPath" /> or <paramref name="assembly" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">
+ <paramref name="assembly" /> is not a <see langword="RuntimeAssembly" />.</exception>
+ </member>
+ <member name="T:System.Runtime.InteropServices.OptionalAttribute">
+ <summary>Indicates that a parameter is optional.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.OptionalAttribute.#ctor">
+ <summary>Initializes a new instance of the <see langword="OptionalAttribute" /> class with default values.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.PreserveSigAttribute">
+ <summary>Indicates that the HRESULT or <see langword="retval" /> signature transformation that takes place during COM interop calls should be suppressed.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.PreserveSigAttribute.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.PreserveSigAttribute" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute">
+ <summary>Indicates that the attributed assembly is a primary interop assembly.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.#ctor(System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute" /> class with the major and minor version numbers of the type library for which this assembly is the primary interop assembly.</summary>
+ <param name="major">The major version of the type library for which this assembly is the primary interop assembly.</param>
+ <param name="minor">The minor version of the type library for which this assembly is the primary interop assembly.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.MajorVersion">
+ <summary>Gets the major version number of the type library for which this assembly is the primary interop assembly.</summary>
+ <returns>The major version number of the type library for which this assembly is the primary interop assembly.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.PrimaryInteropAssemblyAttribute.MinorVersion">
+ <summary>Gets the minor version number of the type library for which this assembly is the primary interop assembly.</summary>
+ <returns>The minor version number of the type library for which this assembly is the primary interop assembly.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.ProgIdAttribute">
+ <summary>Allows the user to specify the ProgID of a class.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.ProgIdAttribute.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="ProgIdAttribute" /> with the specified ProgID.</summary>
+ <param name="progId">The ProgID to be assigned to the class.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.ProgIdAttribute.Value">
+ <summary>Gets the ProgID of the class.</summary>
+ <returns>The ProgID of the class.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.RuntimeEnvironment">
+ <summary>Provides a collection of <see langword="static" /> methods that return information about the common language runtime environment.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.FromGlobalAccessCache(System.Reflection.Assembly)">
+ <summary>Tests whether the specified assembly is loaded in the global assembly cache.</summary>
+ <param name="a">The assembly to test.</param>
+ <returns>
+ <see langword="true" /> if the assembly is loaded in the global assembly cache; otherwise, <see langword="false" />.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory">
+ <summary>Returns the directory where the common language runtime is installed.</summary>
+ <returns>A string that contains the path to the directory where the common language runtime is installed.</returns>
+ </member>
+ <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeInterfaceAsIntPtr(System.Guid,System.Guid)">
+ <summary>Returns the specified interface on the specified class.</summary>
+ <param name="clsid">The identifier for the desired class.</param>
+ <param name="riid">The identifier for the desired interface.</param>
+ <returns>An unmanaged pointer to the requested interface.</returns>
+ <exception cref="T:System.Runtime.InteropServices.COMException">IUnknown::QueryInterface failure.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeInterfaceAsObject(System.Guid,System.Guid)">
+ <summary>Returns an instance of a type that represents a COM object by a pointer to its <see langword="IUnknown" /> interface.</summary>
+ <param name="clsid">The identifier for the desired class.</param>
+ <param name="riid">The identifier for the desired interface.</param>
+ <returns>An object that represents the specified unmanaged COM object.</returns>
+ <exception cref="T:System.Runtime.InteropServices.COMException">IUnknown::QueryInterface failure.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion">
+ <summary>Gets the version number of the common language runtime that is running the current process.</summary>
+ <returns>A string containing the version number of the common language runtime.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.RuntimeEnvironment.SystemConfigurationFile">
+ <summary>Gets the path to the system configuration file.</summary>
+ <returns>The path to the system configuration file.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.SafeArrayRankMismatchException">
+ <summary>The exception thrown when the rank of an incoming <see langword="SAFEARRAY" /> does not match the rank specified in the managed signature.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor">
+ <summary>Initializes a new instance of the <see langword="SafeArrayTypeMismatchException" /> class with default values.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="SafeArrayTypeMismatchException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="SafeArrayRankMismatchException" /> class with the specified message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayRankMismatchException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SafeArrayRankMismatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.SafeArrayTypeMismatchException">
+ <summary>The exception thrown when the type of the incoming <see langword="SAFEARRAY" /> does not match the type specified in the managed signature.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor">
+ <summary>Initializes a new instance of the <see langword="SafeArrayTypeMismatchException" /> class with default values.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see langword="SafeArrayTypeMismatchException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see langword="SafeArrayTypeMismatchException" /> class with the specified message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeArrayTypeMismatchException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SafeArrayTypeMismatchException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="T:System.Runtime.InteropServices.SafeBuffer">
+ <summary>Provides a controlled memory buffer that can be used for reading and writing. Attempts to access memory outside the controlled buffer (underruns and overruns) raise exceptions.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.#ctor(System.Boolean)">
+ <summary>Creates a new instance of the <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> class, and specifies whether the buffer handle is to be reliably released.</summary>
+ <param name="ownsHandle">
+ <see langword="true" /> to reliably release the handle during the finalization phase; <see langword="false" /> to prevent reliable release (not recommended).</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.AcquirePointer(System.Byte*@)">
+ <summary>Obtains a pointer from a <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> object for a block of memory.</summary>
+ <param name="pointer">A byte pointer, passed by reference, to receive the pointer from within the <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> object. You must set this pointer to <see langword="null" /> before you call this method.</param>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="P:System.Runtime.InteropServices.SafeBuffer.ByteLength">
+ <summary>Gets the size of the buffer, in bytes.</summary>
+ <returns>The number of bytes in the memory buffer.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.Initialize(System.UInt32,System.UInt32)">
+ <summary>Specifies the allocation size of the memory buffer by using the specified number of elements and element size. You must call this method before you use the <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> instance.</summary>
+ <param name="numElements">The number of elements in the buffer.</param>
+ <param name="sizeOfEachElement">The size of each element in the buffer.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="numElements" /> is less than zero.
+-or-
+<paramref name="sizeOfEachElement" /> is less than zero.
+-or-
+<paramref name="numElements" /> multiplied by <paramref name="sizeOfEachElement" /> is greater than the available address space.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.Initialize(System.UInt64)">
+ <summary>Defines the allocation size of the memory region in bytes. You must call this method before you use the <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> instance.</summary>
+ <param name="numBytes">The number of bytes in the buffer.</param>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="numBytes" /> is less than zero.
+-or-
+<paramref name="numBytes" /> is greater than the available address space.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.Initialize``1(System.UInt32)">
+ <summary>Defines the allocation size of the memory region by specifying the number of value types. You must call this method before you use the <see cref="T:System.Runtime.InteropServices.SafeBuffer" /> instance.</summary>
+ <param name="numElements">The number of elements of the value type to allocate memory for.</param>
+ <typeparam name="T">The value type to allocate memory for.</typeparam>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="numElements" /> is less than zero.
+-or-
+<paramref name="numElements" /> multiplied by the size of each element is greater than the available address space.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.Read``1(System.UInt64)">
+ <summary>Reads a value type from memory at the specified offset.</summary>
+ <param name="byteOffset">The location from which to read the value type. You may have to consider alignment issues.</param>
+ <typeparam name="T">The value type to read.</typeparam>
+ <returns>The value type that was read from memory.</returns>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.ReadArray``1(System.UInt64,``0[],System.Int32,System.Int32)">
+ <summary>Reads the specified number of value types from memory starting at the offset, and writes them into an array starting at the index.</summary>
+ <param name="byteOffset">The location from which to start reading.</param>
+ <param name="array">The output array to write to.</param>
+ <param name="index">The location in the output array to begin writing to.</param>
+ <param name="count">The number of value types to read from the input array and to write to the output array.</param>
+ <typeparam name="T">The value type to read.</typeparam>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero.
+-or-
+<paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentException">The length of the array minus the index is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.ReleasePointer">
+ <summary>Releases a pointer that was obtained by the <see cref="M:System.Runtime.InteropServices.SafeBuffer.AcquirePointer(System.Byte*@)" /> method.</summary>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.Write``1(System.UInt64,``0)">
+ <summary>Writes a value type to memory at the given location.</summary>
+ <param name="byteOffset">The location at which to start writing. You may have to consider alignment issues.</param>
+ <param name="value">The value to write.</param>
+ <typeparam name="T">The value type to write.</typeparam>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SafeBuffer.WriteArray``1(System.UInt64,``0[],System.Int32,System.Int32)">
+ <summary>Writes the specified number of value types to a memory location by reading bytes starting from the specified location in the input array.</summary>
+ <param name="byteOffset">The location in memory to write to.</param>
+ <param name="array">The input array.</param>
+ <param name="index">The offset in the array to start reading from.</param>
+ <param name="count">The number of value types to write.</param>
+ <typeparam name="T">The value type to write.</typeparam>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="array" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> or <paramref name="count" /> is less than zero.</exception>
+ <exception cref="T:System.ArgumentException">The length of the input array minus <paramref name="index" /> is less than <paramref name="count" />.</exception>
+ <exception cref="T:System.InvalidOperationException">The <see cref="Overload:System.Runtime.InteropServices.SafeBuffer.Initialize" /> method has not been called.</exception>
+ </member>
+ <member name="T:System.Runtime.InteropServices.SEHException">
+ <summary>Represents structured exception handling (SEH) errors.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SEHException.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class from serialization data.</summary>
+ <param name="info">The object that holds the serialized object data.</param>
+ <param name="context">The contextual information about the source or destination.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="info" /> is <see langword="null" />.</exception>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.String)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class with a specified message.</summary>
+ <param name="message">The message that indicates the reason for the exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SEHException.#ctor(System.String,System.Exception)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.SEHException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
+ <param name="message">The error message that explains the reason for the exception.</param>
+ <param name="inner">The exception that is the cause of the current exception. If the <paramref name="inner" /> parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.SEHException.CanResume">
+ <summary>Indicates whether the exception can be recovered from, and whether the code can continue from the point at which the exception was thrown.</summary>
+ <returns>Always <see langword="false" />, because resumable exceptions are not implemented.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.StandardOleMarshalObject">
+ <summary>Replaces the standard common language runtime (CLR) free-threaded marshaler with the standard OLE STA marshaler.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.StandardOleMarshalObject.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.StandardOleMarshalObject" /> class.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeIdentifierAttribute">
+ <summary>Provides support for type equivalence.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeIdentifierAttribute.#ctor">
+ <summary>Creates a new instance of the <see cref="T:System.Runtime.InteropServices.TypeIdentifierAttribute" /> class.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeIdentifierAttribute.#ctor(System.String,System.String)">
+ <summary>Creates a new instance of the <see cref="T:System.Runtime.InteropServices.TypeIdentifierAttribute" /> class with the specified scope and identifier.</summary>
+ <param name="scope">The first type equivalence string.</param>
+ <param name="identifier">The second type equivalence string.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeIdentifierAttribute.Identifier">
+ <summary>Gets the value of the <paramref name="identifier" /> parameter that was passed to the <see cref="M:System.Runtime.InteropServices.TypeIdentifierAttribute.#ctor(System.String,System.String)" /> constructor.</summary>
+ <returns>The value of the constructor's <paramref name="identifier" /> parameter.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeIdentifierAttribute.Scope">
+ <summary>Gets the value of the <paramref name="scope" /> parameter that was passed to the <see cref="M:System.Runtime.InteropServices.TypeIdentifierAttribute.#ctor(System.String,System.String)" /> constructor.</summary>
+ <returns>The value of the constructor's <paramref name="scope" /> parameter.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibFuncAttribute">
+ <summary>Contains the <see cref="T:System.Runtime.InteropServices.FUNCFLAGS" /> that were originally imported for this method from the COM type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibFuncAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see langword="TypeLibFuncAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for the attributed method as found in the type library it was imported from.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibFuncAttribute.#ctor(System.Runtime.InteropServices.TypeLibFuncFlags)">
+ <summary>Initializes a new instance of the <see langword="TypeLibFuncAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for the attributed method as found in the type library it was imported from.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibFuncAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for this method.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.TypeLibFuncFlags" /> value for this method.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibFuncFlags">
+ <summary>Describes the original settings of the <see langword="FUNCFLAGS" /> in the COM type library from where this method was imported.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FBindable">
+ <summary>The function that supports data binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDefaultBind">
+ <summary>The function that best represents the object. Only one function in a type information can have this attribute.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDefaultCollelem">
+ <summary>Permits an optimization in which the compiler looks for a member named "xyz" on the type "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FDisplayBind">
+ <summary>The function that is displayed to the user as bindable. <see cref="F:System.Runtime.InteropServices.TypeLibFuncFlags.FBindable" /> must also be set.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FHidden">
+ <summary>The function should not be displayed to the user, although it exists and is bindable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FImmediateBind">
+ <summary>The function is mapped as individual bindable properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FNonBrowsable">
+ <summary>The property appears in an object browser, but not in a properties browser.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FReplaceable">
+ <summary>Tags the interface as having default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FRequestEdit">
+ <summary>When set, any call to a method that sets the property results first in a call to <see langword="IPropertyNotifySink::OnRequestEdit" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FRestricted">
+ <summary>This flag is intended for system-level functions or functions that type browsers should not display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FSource">
+ <summary>The function returns an object that is a source of events.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FUiDefault">
+ <summary>The type information member is the default member for display in the user interface.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibFuncFlags.FUsesGetLastError">
+ <summary>The function supports <see langword="GetLastError" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibImportClassAttribute">
+ <summary>Specifies which <see cref="T:System.Type" /> exclusively uses an interface. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibImportClassAttribute.#ctor(System.Type)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibImportClassAttribute" /> class specifying the <see cref="T:System.Type" /> that exclusively uses an interface.</summary>
+ <param name="importClass">The <see cref="T:System.Type" /> object that exclusively uses an interface.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibImportClassAttribute.Value">
+ <summary>Gets the name of a <see cref="T:System.Type" /> object that exclusively uses an interface.</summary>
+ <returns>The name of a <see cref="T:System.Type" /> object that exclusively uses an interface.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibTypeAttribute">
+ <summary>Contains the <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> that were originally imported for this type from the COM type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibTypeAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see langword="TypeLibTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for the attributed type as found in the type library it was imported from.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibTypeAttribute.#ctor(System.Runtime.InteropServices.TypeLibTypeFlags)">
+ <summary>Initializes a new instance of the <see langword="TypeLibTypeAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for the attributed type as found in the type library it was imported from.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibTypeAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for this type.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.TypeLibTypeFlags" /> value for this type.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibTypeFlags">
+ <summary>Describes the original settings of the <see cref="T:System.Runtime.InteropServices.TYPEFLAGS" /> in the COM type library from which the type was imported.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FAggregatable">
+ <summary>The class supports aggregation.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FAppObject">
+ <summary>A type description that describes an <see langword="Application" /> object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FCanCreate">
+ <summary>Instances of the type can be created by <see langword="ITypeInfo::CreateInstance" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FControl">
+ <summary>The type is a control from which other types will be derived, and should not be displayed to users.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FDispatchable">
+ <summary>Indicates that the interface derives from <see langword="IDispatch" />, either directly or indirectly.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FDual">
+ <summary>The interface supplies both <see langword="IDispatch" /> and V-table binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FHidden">
+ <summary>The type should not be displayed to browsers.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FLicensed">
+ <summary>The type is licensed.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FNonExtensible">
+ <summary>The interface cannot add members at run time.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FOleAutomation">
+ <summary>The types used in the interface are fully compatible with Automation, including vtable binding support.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FPreDeclId">
+ <summary>The type is predefined. The client application should automatically create a single instance of the object that has this attribute. The name of the variable that points to the object is the same as the class name of the object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FReplaceable">
+ <summary>The object supports <see langword="IConnectionPointWithDefault" />, and has default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FRestricted">
+ <summary>This flag is intended for system-level types or types that type browsers should not display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibTypeFlags.FReverseBind">
+ <summary>Indicates base interfaces should be checked for name resolution before checking child interfaces. This is the reverse of the default behavior.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibVarAttribute">
+ <summary>Contains the <see cref="T:System.Runtime.InteropServices.VARFLAGS" /> that were originally imported for this field from the COM type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibVarAttribute.#ctor(System.Int16)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVarAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for the attributed field as found in the type library it was imported from.</param>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibVarAttribute.#ctor(System.Runtime.InteropServices.TypeLibVarFlags)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVarAttribute" /> class with the specified <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value.</summary>
+ <param name="flags">The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for the attributed field as found in the type library it was imported from.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibVarAttribute.Value">
+ <summary>Gets the <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for this field.</summary>
+ <returns>The <see cref="T:System.Runtime.InteropServices.TypeLibVarFlags" /> value for this field.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibVarFlags">
+ <summary>Describes the original settings of the <see cref="T:System.Runtime.InteropServices.VARFLAGS" /> in the COM type library from which the variable was imported.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FBindable">
+ <summary>The variable supports data binding.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDefaultBind">
+ <summary>The variable is the single property that best represents the object. Only one variable in a type info can have this value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDefaultCollelem">
+ <summary>Permits an optimization in which the compiler looks for a member named "xyz" on the type "abc". If such a member is found and is flagged as an accessor function for an element of the default collection, then a call is generated to that member function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FDisplayBind">
+ <summary>The variable is displayed as bindable. <see cref="F:System.Runtime.InteropServices.TypeLibVarFlags.FBindable" /> must also be set.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FHidden">
+ <summary>The variable should not be displayed in a browser, though it exists and is bindable.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FImmediateBind">
+ <summary>The variable is mapped as individual bindable properties.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FNonBrowsable">
+ <summary>The variable appears in an object browser, but not in a properties browser.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FReadOnly">
+ <summary>Assignment to the variable should not be allowed.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FReplaceable">
+ <summary>Tags the interface as having default behaviors.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FRequestEdit">
+ <summary>Indicates that the property supports the COM <see langword="OnRequestEdit" /> notification.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FRestricted">
+ <summary>This flag is intended for system-level functions or functions that type browsers should not display.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FSource">
+ <summary>The variable returns an object that is a source of events.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.TypeLibVarFlags.FUiDefault">
+ <summary>The default display in the user interface.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.TypeLibVersionAttribute">
+ <summary>Specifies the version number of an exported type library.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.TypeLibVersionAttribute.#ctor(System.Int32,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.TypeLibVersionAttribute" /> class with the major and minor version numbers of the type library.</summary>
+ <param name="major">The major version number of the type library.</param>
+ <param name="minor">The minor version number of the type library.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibVersionAttribute.MajorVersion">
+ <summary>Gets the major version number of the type library.</summary>
+ <returns>The major version number of the type library.</returns>
+ </member>
+ <member name="P:System.Runtime.InteropServices.TypeLibVersionAttribute.MinorVersion">
+ <summary>Gets the minor version number of the type library.</summary>
+ <returns>The minor version number of the type library.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.UnknownWrapper">
+ <summary>Wraps objects the marshaler should marshal as a <see langword="VT_UNKNOWN" />.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.UnknownWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.UnknownWrapper" /> class with the object to be wrapped.</summary>
+ <param name="obj">The object being wrapped.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.UnknownWrapper.WrappedObject">
+ <summary>Gets the object contained by this wrapper.</summary>
+ <returns>The wrapped object.</returns>
+ </member>
+ <member name="T:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute">
+ <summary>Controls the marshaling behavior of a delegate signature passed as an unmanaged function pointer to or from unmanaged code. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.#ctor(System.Runtime.InteropServices.CallingConvention)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute" /> class with the specified calling convention.</summary>
+ <param name="callingConvention">The specified calling convention.</param>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.BestFitMapping">
+ <summary>Enables or disables best-fit mapping behavior when converting Unicode characters to ANSI characters.</summary>
+ </member>
+ <member name="P:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.CallingConvention">
+ <summary>Gets the value of the calling convention.</summary>
+ <returns>The value of the calling convention specified by the <see cref="M:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.#ctor(System.Runtime.InteropServices.CallingConvention)" /> constructor.</returns>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.CharSet">
+ <summary>Indicates how to marshal string parameters to the method, and controls name mangling.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.SetLastError">
+ <summary>Indicates whether the callee calls the <see langword="SetLastError" /> Windows API function before returning from the attributed method.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute.ThrowOnUnmappableChar">
+ <summary>Enables or disables the throwing of an exception on an unmappable Unicode character that is converted to an ANSI "?" character.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.UnmanagedType">
+ <summary>Identifies how to marshal parameters or fields to unmanaged code.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.AnsiBStr">
+ <summary>An ANSI character string that is a length-prefixed single byte. You can use this member on the <see cref="T:System.String" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.AsAny">
+ <summary>A dynamic type that determines the type of an object at run time and marshals the object as that type. This member is valid for platform invoke methods only.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.Bool">
+ <summary>A 4-byte Boolean value (<see langword="true" /> != 0, <see langword="false" /> = 0). This is the Win32 BOOL type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.BStr">
+ <summary>A Unicode character string that is a length-prefixed double byte. You can use this member, which is the default string in COM, on the <see cref="T:System.String" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.ByValArray">
+ <summary>When the <see cref="P:System.Runtime.InteropServices.MarshalAsAttribute.Value" /> property is set to <see langword="ByValArray" />, the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> field must be set to indicate the number of elements in the array. The <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.ArraySubType" /> field can optionally contain the <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> of the array elements when it is necessary to differentiate among string types. You can use this <see cref="T:System.Runtime.InteropServices.UnmanagedType" /> only on an array that whose elements appear as fields in a structure.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.ByValTStr">
+ <summary>Used for in-line, fixed-length character arrays that appear within a structure. <see langword="ByValTStr" /> types behave like C-style, fixed-size strings inside a structure (for example, <c>char s[5]</c>). The character type used with <see langword="ByValTStr" /> is determined by the <see cref="T:System.Runtime.InteropServices.CharSet" /> argument of the <see cref="T:System.Runtime.InteropServices.StructLayoutAttribute" /> attribute applied to the containing structure. Always use the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> field to indicate the size of the array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.Currency">
+ <summary>A currency type. Used on a <see cref="T:System.Decimal" /> to marshal the decimal value as a COM currency type instead of as a <see langword="Decimal" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.CustomMarshaler">
+ <summary>Specifies the custom marshaler class when used with the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalType" /> or <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalTypeRef" /> field. The <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.MarshalCookie" /> field can be used to pass additional information to the custom marshaler. You can use this member on any reference type. This member is valid for parameters and return values only. It cannot be used on fields.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.Error">
+ <summary>A native type that is associated with an <see cref="F:System.Runtime.InteropServices.UnmanagedType.I4" /> or an <see cref="F:System.Runtime.InteropServices.UnmanagedType.U4" /> and that causes the parameter to be exported as an HRESULT in the exported type library.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.FunctionPtr">
+ <summary>An integer that can be used as a C-style function pointer. You can use this member on a <see cref="T:System.Delegate" /> data type or on a type that inherits from a <see cref="T:System.Delegate" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.HString">
+ <summary>A Windows Runtime string. You can use this member on the <see cref="T:System.String" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.I1">
+ <summary>A 1-byte signed integer. You can use this member to transform a Boolean value into a 1-byte, C-style <see langword="bool" /> (<see langword="true" /> = 1, <see langword="false" /> = 0).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.I2">
+ <summary>A 2-byte signed integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.I4">
+ <summary>A 4-byte signed integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.I8">
+ <summary>An 8-byte signed integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.IDispatch">
+ <summary>A COM <see langword="IDispatch" /> pointer (<see langword="Object" /> in Microsoft Visual Basic 6.0).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.IInspectable">
+ <summary>A Windows Runtime interface pointer. You can use this member on the <see cref="T:System.Object" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.Interface">
+ <summary>A COM interface pointer. The <see cref="T:System.Guid" /> of the interface is obtained from the class metadata. Use this member to specify the exact interface type or the default interface type if you apply it to a class. This member produces the same behavior as <see cref="F:System.Runtime.InteropServices.UnmanagedType.IUnknown" /> when you apply it to the <see cref="T:System.Object" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.IUnknown">
+ <summary>A COM <see langword="IUnknown" /> pointer. You can use this member on the <see cref="T:System.Object" /> data type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPArray">
+ <summary>A pointer to the first element of a C-style array. When marshaling from managed to unmanaged code, the length of the array is determined by the length of the managed array. When marshaling from unmanaged to managed code, the length of the array is determined from the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeConst" /> and <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SizeParamIndex" /> fields, optionally followed by the unmanaged type of the elements within the array when it is necessary to differentiate among string types.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPStr">
+ <summary>A single byte, null-terminated ANSI character string. You can use this member on the <see cref="T:System.String" /> and <see cref="T:System.Text.StringBuilder" /> data types.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPStruct">
+ <summary>A pointer to a C-style structure that you use to marshal managed formatted classes. This member is valid for platform invoke methods only.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPTStr">
+ <summary>A platform-dependent character string: ANSI on Windows 98, and Unicode on Windows NT and Windows XP. This value is supported only for platform invoke and not for COM interop, because exporting a string of type <see langword="LPTStr" /> is not supported.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPUTF8Str">
+ <summary>A pointer to a UTF-8 encoded string.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.LPWStr">
+ <summary>A 2-byte, null-terminated Unicode character string. You cannot use the <see langword="LPWStr" /> value with an unmanaged string unless the string was created by using the unmanaged <see langword="CoTaskMemAlloc" /> function.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.R4">
+ <summary>A 4-byte floating-point number.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.R8">
+ <summary>An 8-byte floating-point number.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.SafeArray">
+ <summary>A <see langword="SafeArray" />, which is a self-describing array that carries the type, rank, and bounds of the associated array data. You can use this member with the <see cref="F:System.Runtime.InteropServices.MarshalAsAttribute.SafeArraySubType" /> field to override the default element type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.Struct">
+ <summary>A VARIANT, which is used to marshal managed formatted classes and value types.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.SysInt">
+ <summary>A platform-dependent, signed integer: 4 bytes on 32-bit Windows, 8 bytes on 64-bit Windows.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.SysUInt">
+ <summary>A platform-dependent, unsigned integer: 4 bytes on 32-bit Windows, 8 bytes on 64-bit Windows.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.TBStr">
+ <summary>A length-prefixed, platform-dependent <see langword="char" /> string: ANSI on Windows 98, Unicode on Windows NT. You rarely use this BSTR-like member.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.U1">
+ <summary>A 1-byte unsigned integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.U2">
+ <summary>A 2-byte unsigned integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.U4">
+ <summary>A 4-byte unsigned integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.U8">
+ <summary>An 8-byte unsigned integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.VariantBool">
+ <summary>A 2-byte, OLE-defined VARIANT_BOOL type (<see langword="true" /> = -1, <see langword="false" /> = 0).</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.UnmanagedType.VBByRefStr">
+ <summary>A value that enables Visual Basic to change a string in unmanaged code and have the results reflected in managed code. This value is only supported for platform invoke.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.VarEnum">
+ <summary>Indicates how to marshal the array elements when an array is marshaled from managed to unmanaged code as a <see cref="F:System.Runtime.InteropServices.UnmanagedType.SafeArray" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_ARRAY">
+ <summary>Indicates a <see langword="SAFEARRAY" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_BLOB">
+ <summary>Indicates length prefixed bytes.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_BLOB_OBJECT">
+ <summary>Indicates that a blob contains an object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_BOOL">
+ <summary>Indicates a Boolean value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_BSTR">
+ <summary>Indicates a BSTR string.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_BYREF">
+ <summary>Indicates that a value is a reference.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_CARRAY">
+ <summary>Indicates a C style array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_CF">
+ <summary>Indicates the clipboard format.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_CLSID">
+ <summary>Indicates a class ID.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_CY">
+ <summary>Indicates a currency value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_DATE">
+ <summary>Indicates a DATE value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_DECIMAL">
+ <summary>Indicates a <see langword="decimal" /> value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_DISPATCH">
+ <summary>Indicates an <see langword="IDispatch" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_EMPTY">
+ <summary>Indicates that a value was not specified.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_ERROR">
+ <summary>Indicates an SCODE.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_FILETIME">
+ <summary>Indicates a FILETIME value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_HRESULT">
+ <summary>Indicates an HRESULT.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_I1">
+ <summary>Indicates a <see langword="char" /> value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_I2">
+ <summary>Indicates a <see langword="short" /> integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_I4">
+ <summary>Indicates a <see langword="long" /> integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_I8">
+ <summary>Indicates a 64-bit integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_INT">
+ <summary>Indicates an integer value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_LPSTR">
+ <summary>Indicates a null-terminated string.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_LPWSTR">
+ <summary>Indicates a wide string terminated by <see langword="null" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_NULL">
+ <summary>Indicates a null value, similar to a null value in SQL.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_PTR">
+ <summary>Indicates a pointer type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_R4">
+ <summary>Indicates a <see langword="float" /> value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_R8">
+ <summary>Indicates a <see langword="double" /> value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_RECORD">
+ <summary>Indicates a user defined type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_SAFEARRAY">
+ <summary>Indicates a SAFEARRAY. Not valid in a VARIANT.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_STORAGE">
+ <summary>Indicates that the name of a storage follows.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_STORED_OBJECT">
+ <summary>Indicates that a storage contains an object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_STREAM">
+ <summary>Indicates that the name of a stream follows.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_STREAMED_OBJECT">
+ <summary>Indicates that a stream contains an object.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI1">
+ <summary>Indicates a <see langword="byte" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI2">
+ <summary>Indicates an <see langword="unsigned" /><see langword="short" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI4">
+ <summary>Indicates an <see langword="unsigned" /><see langword="long" />.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UI8">
+ <summary>Indicates an 64-bit unsigned integer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UINT">
+ <summary>Indicates an <see langword="unsigned" /> integer value.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_UNKNOWN">
+ <summary>Indicates an <see langword="IUnknown" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_USERDEFINED">
+ <summary>Indicates a user defined type.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_VARIANT">
+ <summary>Indicates a VARIANT <see langword="far" /> pointer.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_VECTOR">
+ <summary>Indicates a simple, counted array.</summary>
+ </member>
+ <member name="F:System.Runtime.InteropServices.VarEnum.VT_VOID">
+ <summary>Indicates a C style <see langword="void" />.</summary>
+ </member>
+ <member name="T:System.Runtime.InteropServices.VariantWrapper">
+ <summary>Marshals data of type <see langword="VT_VARIANT | VT_BYREF" /> from managed to unmanaged code. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Runtime.InteropServices.VariantWrapper.#ctor(System.Object)">
+ <summary>Initializes a new instance of the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> class for the specified <see cref="T:System.Object" /> parameter.</summary>
+ <param name="obj">The object to marshal.</param>
+ </member>
+ <member name="P:System.Runtime.InteropServices.VariantWrapper.WrappedObject">
+ <summary>Gets the object wrapped by the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> object.</summary>
+ <returns>The object wrapped by the <see cref="T:System.Runtime.InteropServices.VariantWrapper" /> object.</returns>
+ </member>
+ <member name="T:System.Security.SecureString">
+ <summary>Represents text that should be kept confidential, such as by deleting it from computer memory when no longer needed. This class cannot be inherited.</summary>
+ </member>
+ <member name="M:System.Security.SecureString.#ctor">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.SecureString" /> class.</summary>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this instance.</exception>
+ <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.#ctor(System.Char*,System.Int32)">
+ <summary>Initializes a new instance of the <see cref="T:System.Security.SecureString" /> class from a subarray of <see cref="T:System.Char" /> objects.
+This constructor is not CLS-compliant. The CLS-compliant alternative is <see cref="M:System.Security.SecureString.#ctor" />.</summary>
+ <param name="value">A pointer to an array of <see cref="T:System.Char" /> objects.</param>
+ <param name="length">The number of elements of <paramref name="value" /> to include in the new instance.</param>
+ <exception cref="T:System.ArgumentNullException">
+ <paramref name="value" /> is <see langword="null" />.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="length" /> is less than zero or greater than 65,536.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.AppendChar(System.Char)">
+ <summary>Appends a character to the end of the current secure string.</summary>
+ <param name="c">A character to append to this secure string.</param>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">Performing this operation would make the length of this secure string greater than 65,536 characters.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.Clear">
+ <summary>Deletes the value of the current secure string.</summary>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.Copy">
+ <summary>Creates a copy of the current secure string.</summary>
+ <returns>A duplicate of this secure string.</returns>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.Dispose">
+ <summary>Releases all resources used by the current <see cref="T:System.Security.SecureString" /> object.</summary>
+ </member>
+ <member name="M:System.Security.SecureString.InsertAt(System.Int32,System.Char)">
+ <summary>Inserts a character in this secure string at the specified index position.</summary>
+ <param name="index">The index position where parameter <paramref name="c" /> is inserted.</param>
+ <param name="c">The character to insert.</param>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero, or greater than the length of this secure string.
+-or-
+Performing this operation would make the length of this secure string greater than 65,536 characters.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.IsReadOnly">
+ <summary>Indicates whether this secure string is marked read-only.</summary>
+ <returns>
+ <see langword="true" /> if this secure string is marked read-only; otherwise, <see langword="false" />.</returns>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ </member>
+ <member name="P:System.Security.SecureString.Length">
+ <summary>Gets the number of characters in the current secure string.</summary>
+ <returns>The number of <see cref="T:System.Char" /> objects in this secure string.</returns>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.MakeReadOnly">
+ <summary>Makes the text value of this secure string read-only.</summary>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.RemoveAt(System.Int32)">
+ <summary>Removes the character at the specified index position from this secure string.</summary>
+ <param name="index">The index position of a character in this secure string.</param>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ </member>
+ <member name="M:System.Security.SecureString.SetAt(System.Int32,System.Char)">
+ <summary>Replaces the existing character at the specified index position with another character.</summary>
+ <param name="index">The index position of an existing character in this secure string</param>
+ <param name="c">A character that replaces the existing character.</param>
+ <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>
+ <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>
+ <exception cref="T:System.ArgumentOutOfRangeException">
+ <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>
+ <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>
+ </member>
+ <member name="T:System.Security.SecureStringMarshal">
+ <summary>Provides a collection of methods for allocating unmanaged memory and copying unmanaged memory blocks.</summary>
+ </member>
+ <member name="M:System.Security.SecureStringMarshal.SecureStringToCoTaskMemAnsi(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Security.SecureStringMarshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object to a block of memory allocated from the unmanaged COM task allocator.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where the <paramref name="s" /> parameter was copied to, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Security.SecureStringMarshal.SecureStringToGlobalAllocAnsi(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> into unmanaged memory, converting into ANSI format as it copies.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, to where the <paramref name="s" /> parameter was copied, or 0 if a null object was supplied.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ <member name="M:System.Security.SecureStringMarshal.SecureStringToGlobalAllocUnicode(System.Security.SecureString)">
+ <summary>Copies the contents of a managed <see cref="T:System.Security.SecureString" /> object into unmanaged memory.</summary>
+ <param name="s">The managed object to copy.</param>
+ <returns>The address, in unmanaged memory, where <paramref name="s" /> was copied, or 0 if <paramref name="s" /> is a <see cref="T:System.Security.SecureString" /> object whose length is 0.</returns>
+ <exception cref="T:System.ArgumentNullException">The <paramref name="s" /> parameter is <see langword="null" />.</exception>
+ <exception cref="T:System.NotSupportedException">The current computer is not running Windows 2000 Service Pack 3 or later.</exception>
+ <exception cref="T:System.OutOfMemoryException">There is insufficient memory available.</exception>
+ </member>
+ </members>
+</doc> \ No newline at end of file