EventBookmark
namespace System.Diagnostics.Eventing.Reader
{
public sealed class EventBookmark
{
public string BookmarkXml {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
internal EventBookmark()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
public EventBookmark(string bookmarkXml)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_EventLog);
}
}
}