CapyKit/Documentation/Help/M_CapyKit_CapyEventReporter_EmitEvent.md
Jordan Wages 87bd044b31 Settings Helper + Documentation
The `SettingsHelper` is an agnostic way to access settings values uniformly through code. The accessor methods are controlled by the consumer.

Documentation has been a bit wonky. I changed the max number of version number components allowed, so each new build should not create new changes on every single bit of documentation now.
2024-04-22 18:28:21 -05:00

2.1 KiB

EmitEvent Method

Emits an event with the given severity level, message, and method name.

Definition

Namespace: CapyKit
Assembly: CapyKit (in CapyKit.dll) Version: 1.0.0

C#

internal static void EmitEvent(
	EventLevel eventLevel,
	string message,
	string method = null,
	params Object[] args
)

F#

internal static member EmitEvent : 
        eventLevel : EventLevel * 
        message : string * 
        ?method : string * 
        args : Object[] 
(* Defaults:
        let _method = defaultArg method null
*)
-> unit 

Parameters

  EventLevel
The severity level of the event.
  String
The message describing the reason for the event. String formatting for args is accepted.
  String  (Optional)
(Optional) The name of the method where the event was raised.
  Object[]
A variable-length parameters list containing arguments for formatting the message.

Remarks

In order to allow for efficient calling member access via CallerMemberNameAttribute , it is suggested that args is defined explicitly for formatted messages.

Example

C#

CapyEventReporter.EmitEvent(EventLevel.Error, "Could not find the description for {0}.", args: new[] { enumeration });

See Also

Reference

CapyEventReporter Class
CapyKit Namespace
CallerMemberNameAttribute