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