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

Namespace:  Huagati.LinqToSQL.Profiler
Assembly:  HuagatiL2SProfiler (in HuagatiL2SProfiler.dll) Version: 1.15.3506.21033

Syntax

C#
public delegate void BeforeSerializingDelegate(
	QueryInformation query,
	out bool cancel
)
Visual Basic (Declaration)
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: Huagati.LinqToSQL.Profiler..::.QueryInformation
The QueryInformation object that is about to be serialized.
cancel
Type: System..::.Boolean %
Output parameter allowing serialization to be cancelled.

See Also