Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UnmanagedMemoryAccessor::Read<T> Method (Int64, T%)

.NET Framework (current version)
 

Reads a structure of type T from the accessor into a provided reference.

Namespace:   System.IO
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.

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
Return to top
Show:
© 2017 Microsoft