EldoS
Navigation
Web site
Support
Table Of Contents

Filter: C#  VB.NET  Pascal  ActiveX  DLL 


TElASMessage.OnTempRequest

TElASMessage     See also    


 

This event is fired when a temporary stream is needed.

 
 

Declaration

[C#]
    event TSBASStreamRequestEvent OnTempRequest;
    delegate void TSBASStreamRequestEvent(object Sender, [out] ref System.IO.Stream Stream, [out] ref bool FreeOnFinish);

[VB.NET]
    Event OnTempRequest As TSBASStreamRequestEvent
    Delegate Sub TSBASStreamRequestEvent(ByVal Sender As Object, ByRef Stream As System.IO.Stream, ByRef FreeOnFinish As Boolean)

[Pascal]
    property OnTempRequest : TSBASStreamRequestEvent;
    TSBASStreamRequestEvent = procedure(Sender: Object; out Stream : TStream; out FreeOnFinish : boolean) of object;

[VB6]
    not implemented;

[ActiveX]
    not implemented;

[DLL]
    not implemented;
 
 

Parameters

  • Stream - the stream to be used by the component
  • FreeOnFinish - specifies whether the component should free the stream automatically
 
 

Description

    This event is fired by TElASMessage when it needs a temporary stream for message processing. The event handler should create a stream and return it in the Stream parameter. If FreeOnFinish parameter is set to True, the stream will be automatically destroyed when it will not be needed anymore. If there is no event handler or no stream is returned from the handler, the component will create a temporary memory stream internally.

 
 

See also:     OnTempRelease    

 
Contact Us | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2012, EldoS Corporation