EventLogPropertySelector
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)
{
}
}
}