MFLoad Method (IMFFrame)
size of a frame's data
pointer to frame's data
clone's type
Loads a full copy of all data (used internally for transfer data between process)
Syntax
Sub MFLoad( _
   ByVal _cbData As UInteger, _
   ByRef _pbData As Byte, _
   ByVal _eLoadType As eMFrameClone _
) 
procedure MFLoad( 
    _cbData: LongWord;
   var  _pbData: Byte;
    _eLoadType: eMFrameClone
); 

Parameters

_cbData
size of a frame's data
_pbData
pointer to frame's data
_eLoadType
clone's type
Example

Here is example of how to use a frame that was saved by one process in another process (see MFSave method):

byte byteData = 0;
MFFrame loadFrame = new MFFrameClass();
loadFrame.MFLoad(data, ref byteData, eMFrameClone.eMFC_Full);
See Also

Reference

IMFFrame Interface
IMFFrame Members