UnmanagedMemoryAccessor.Read<T>(Int64, T) メソッド

定義

アクセサーから指定された参照に T 型の構造体を読み取ります。

public:
generic <typename T>
 where T : value class void Read(long position, [Runtime::InteropServices::Out] T % structure);
public void Read<T> (long position, out T structure) where T : struct;
[System.Security.SecurityCritical]
public void Read<T> (long position, out T structure) where T : struct;
member this.Read : int64 * 'T -> unit (requires 'T : struct)
[<System.Security.SecurityCritical>]
member this.Read : int64 * 'T -> unit (requires 'T : struct)
Public Sub Read(Of T As Structure) (position As Long, ByRef structure As T)

型パラメーター

T

構造体の型。

パラメーター

position
Int64

アクセサー内の読み取り開始位置。

structure
T

読み取りデータが格納されている構造体。

属性

例外

position 型の構造体で読み取るための T の後のバイト数が不足しています。

- または -

T は 1 つ以上の参照型を含む値型です。

position が、0 未満か、アクセサーの容量を超えています。

アクセサーが読み取りをサポートしていません。

アクセサーは破棄されています。

注釈

このクラスの他の読み取りメソッドでは簡単に対応できない中から大の構造体を読み取る場合は、このメソッドを使用します。

適用対象