using System;
using System.Runtime.InteropServices;
namespace System.ComponentModel.Design
{
/// Defines identifiers for a set of technologies that designer hosts support.
// Token: 0x02000051 RID: 81
[ComVisible(true)]
public enum ViewTechnology
{
/// Represents a mode in which the view object is passed directly to the development environment.
// Token: 0x0400010D RID: 269
[Obsolete("Use ViewTechnology.Default.")]
Passthrough,
/// Represents a mode in which a Windows Forms control object provides the display for the root designer.
// Token: 0x0400010E RID: 270
[Obsolete("Use ViewTechnology.Default.")]
WindowsForms,
/// Specifies the default view technology support.
// Token: 0x0400010F RID: 271
Default
}
}