Error processing SSI file
LEADTOOLS (Leadtools assembly)

Show in webframe

Create(IBuffer,UInt64,Boolean) Method








An IBuffer that will be used as storage for the new LeadStream object.
The offset in buffer that will be used as the origin of the new LeadStream object.
true to dispose of the buffer automatically; otherwise, it is false.
Constructs a new ILeadStream using the specified buffer as storage.
Syntax
public static ILeadStream Create( 
   IBuffer buffer,
   ulong offset,
   bool autoDisposeBuffer
)
'Declaration
 
Public Overloads Shared Function Create( _
   ByVal buffer As IBuffer, _
   ByVal offset As ULong, _
   ByVal autoDisposeBuffer As Boolean _
) As ILeadStream
'Usage
 
Dim buffer As IBuffer
Dim offset As ULong
Dim autoDisposeBuffer As Boolean
Dim value As ILeadStream
 
value = LeadStreamFactory.Create(buffer, offset, autoDisposeBuffer)
public static ILeadStream Create( 
   IBuffer buffer,
   ulong offset,
   bool autoDisposeBuffer
)
 function Leadtools.LeadStreamFactory.Create(IBuffer,UInt64,Boolean)( 
   buffer ,
   offset ,
   autoDisposeBuffer 
)
public:
static ILeadStream^ Create( 
   IBuffer^ buffer,
   ulong offset,
   bool autoDisposeBuffer
) 

Parameters

buffer
An IBuffer that will be used as storage for the new LeadStream object.
offset
The offset in buffer that will be used as the origin of the new LeadStream object.
autoDisposeBuffer
true to dispose of the buffer automatically; otherwise, it is false.

Return Value

The lead stream object.
Remarks

The returned ILeadStream can be be disposed by casting it as IDisposable and use the Dispose method.

Requirements

Target Platforms

See Also

Reference

LeadStreamFactory Class
LeadStreamFactory Members
Overload List

Error processing SSI file