| RtspRequestReceivedCallback Delegate | 
                Callback, called when the a new request is received.
            
 
Namespace: StreamCoders.RtspAssembly: MediaBase (in MediaBase.dll) Version: 2.0.5.0 (2.0.5.0)
Syntaxpublic delegate void RtspRequestReceivedCallback(
	Object sender,
	RtspRequest request,
	ref RtspResponse proposedResponse
)
Public Delegate Sub RtspRequestReceivedCallback ( 
	sender As Object,
	request As RtspRequest,
	ByRef proposedResponse As RtspResponse
)
public delegate void RtspRequestReceivedCallback(
	Object^ sender, 
	RtspRequest^ request, 
	RtspResponse^% proposedResponse
)
type RtspRequestReceivedCallback = 
    delegate of 
        sender : Object * 
        request : RtspRequest * 
        proposedResponse : RtspResponse byref -> unitParameters
- sender
 - Type: SystemObject
           Source of the event.  - request
 - Type: StreamCoders.RtspRtspRequest
          The request.  - proposedResponse
 - Type: StreamCoders.RtspRtspResponse
 [in,out] The proposed response.  
See Also