| RtspResponseReceivedCallback Delegate | 
                Callback, called when a new response is received.
            
 
Namespace: StreamCoders.RtspAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntaxpublic delegate void RtspResponseReceivedCallback(
	Object sender,
	RtspResponse response
)
Public Delegate Sub RtspResponseReceivedCallback ( 
	sender As Object,
	response As RtspResponse
)
public delegate void RtspResponseReceivedCallback(
	Object^ sender, 
	RtspResponse^ response
)
type RtspResponseReceivedCallback = 
    delegate of 
        sender : Object * 
        response : RtspResponse -> unitParameters
- sender
 - Type: SystemObject
   Source of the event.  - response
 - Type: StreamCoders.RtspRtspResponse
 The response.  
See Also