DataCollectorNotifications.RaiseCustomEvent Method (CustomNotificationEventArgs, NotificationBroadcastLevel)
Raises a custom event by using the provided event arguments and indication of broadcast level.
Namespace: Microsoft.VisualStudio.TestTools.Execution
Assembly: Microsoft.VisualStudio.QualityTools.ExecutionCommon (in Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll)
Syntax
'Declaration
Public MustOverride Sub RaiseCustomEvent ( _
eventArgs As CustomNotificationEventArgs, _
broadcastLevel As NotificationBroadcastLevel _
)
public abstract void RaiseCustomEvent(
CustomNotificationEventArgs eventArgs,
NotificationBroadcastLevel broadcastLevel
)
public:
virtual void RaiseCustomEvent(
CustomNotificationEventArgs^ eventArgs,
NotificationBroadcastLevel broadcastLevel
) abstract
abstract RaiseCustomEvent :
eventArgs:CustomNotificationEventArgs *
broadcastLevel:NotificationBroadcastLevel -> unit
public abstract function RaiseCustomEvent(
eventArgs : CustomNotificationEventArgs,
broadcastLevel : NotificationBroadcastLevel
)
Parameters
eventArgs
Type: Microsoft.VisualStudio.TestTools.Execution.CustomNotificationEventArgsA custom class that is derived from CustomNotificationEventArgs.
broadcastLevel
Type: Microsoft.VisualStudio.TestTools.Execution.NotificationBroadcastLevelA member of the NotificationBroadcastLevel enumeration.
Remarks
This RaiseCustomEvent method does not return until all diagnostic data adapters have either handled or ignored the event.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DataCollectorNotifications Class