using System;
namespace System
{
/// Provides information about the current registration for notification of the next full garbage collection.
// Token: 0x02000670 RID: 1648
public enum GCNotificationStatus
{
/// The notification was successful and the registration was not canceled.
// Token: 0x04001904 RID: 6404
Succeeded,
/// The notification failed for any reason.
// Token: 0x04001905 RID: 6405
Failed,
/// The current registration was canceled by the user.
// Token: 0x04001906 RID: 6406
Canceled,
/// The time specified by the parameter for either or has elapsed.
// Token: 0x04001907 RID: 6407
Timeout,
/// This result can be caused by the following: there is no current registration for a garbage collection notification, concurrent garbage collection is enabled, or the time specified for the parameter has expired and no garbage collection notification was obtained. (See the <gcConcurrent> runtime setting for information about how to disable concurrent garbage collection.)
// Token: 0x04001908 RID: 6408
NotApplicable
}
}