12 lines
506 B
C#
12 lines
506 B
C#
using System;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
/// <summary>References one or more methods to be called when the address of a network interface changes.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">An <see cref="T:System.EventArgs" /> object that contains data about the event. </param>
|
|
// Token: 0x0200032E RID: 814
|
|
// (Invoke) Token: 0x06001C91 RID: 7313
|
|
public delegate void NetworkAddressChangedEventHandler(object sender, EventArgs e);
|
|
}
|