//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Diagnostics;
using System;
///
/// Specifies when the license can be used.
///
public enum LicenseUsageMode {
///
///
/// Used during runtime.
///
///
Runtime,
///
///
/// Used during design time by a visual designer or the compiler.
///
///
Designtime,
}
}