<PackageReference Include="System.Diagnostics.EventLog" Version="5.0.0-preview.2.20160.6" />

EventLogPropertySelector

Contains an array of strings that represent XPath queries for elements in the XML representation of an event, which is based on the Event Schema. The queries in this object are used to extract values from the event.
using System.Collections.Generic; namespace System.Diagnostics.Eventing.Reader { public class EventLogPropertySelector : IDisposable { public EventLogPropertySelector(IEnumerable<string> propertyQueries) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog); } public void Dispose() { } protected virtual void Dispose(bool disposing) { } } }