using System.Diagnostics; namespace WinSW.Logging { /// /// Indicates that the class may reference the event log /// public interface IServiceEventLogProvider { /// /// Locates Event Log for the service. /// /// Event Log or null if it is not avilable EventLog? Locate(); } }