//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Diagnostics;
using System;
///
/// Specifies that this object supports
/// a simple,
/// transacted notification for batch initialization.
///
[SRDescription(SR.ISupportInitializeDescr)]
public interface ISupportInitialize {
///
///
/// Signals
/// the object that initialization is starting.
///
///
void BeginInit();
///
///
/// Signals the object that initialization is
/// complete.
///
///
void EndInit();
}
}