UnmanagedMemoryAccessor::Read<T> Method (Int64, T%)
Reads a structure of type T from the accessor into a provided reference.
Assembly: mscorlib (in mscorlib.dll)
public: generic<typename T> where T : value struct, gcnew() [SecurityCriticalAttribute] void Read( long long position, [OutAttribute] T% structure )
Parameters
- position
-
Type:
System::Int64
The position in the accessor at which to begin reading.
- structure
-
Type:
T%
The structure to contain the read data.
Type Parameters
- T
The type of structure.
| Exception | Condition |
|---|---|
| ArgumentException | There are not enough bytes after position to read in a structure of type T. -or- T is a value type that contains one or more reference types. |
| ArgumentOutOfRangeException | position is less than zero or greater than the capacity of the accessor. |
| NotSupportedException | The accessor does not support reading. |
| ObjectDisposedException | The accessor has been disposed. |
Use this method to read medium to large structures that are not easily accommodated by the other read methods in this class.
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Available since 4.0