17 lines
512 B
C#
17 lines
512 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="INotifyPropertyChanging.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
namespace System.ComponentModel
|
||
|
{
|
||
|
public interface INotifyPropertyChanging
|
||
|
{
|
||
|
/// <devdoc>
|
||
|
/// </devdoc>
|
||
|
event PropertyChangingEventHandler PropertyChanging;
|
||
|
}
|
||
|
}
|