Delegate for the BeforeSerializing event that is fired before a profiler log entry is serialized.

Namespace: HuagatiEFProfiler
Assembly: HuagatiEFProfiler (in HuagatiEFProfiler.dll) Version: 1.33.3996.16092

Syntax

C#
public delegate void BeforeSerializingDelegate(
	QueryInformation query,
	out bool cancel
)
Visual Basic
Public Delegate Sub BeforeSerializingDelegate ( _
	query As QueryInformation, _
	<OutAttribute> ByRef cancel As Boolean _
)
Visual C++
public delegate void BeforeSerializingDelegate(
	QueryInformation^ query, 
	[OutAttribute] bool% cancel
)

Parameters

query
Type: HuagatiEFProfiler..::..QueryInformation
The QueryInformation object that is about to be serialized.
cancel
Type: System..::..Boolean%
Output parameter allowing serialization to be cancelled.

See Also