Files
2026-06-04 11:42:34 +02:00

14 lines
552 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Messaging
{
/// <summary>Represents the method that will handle processing of headers on the stream during deserialization.</summary>
/// <returns>A <see cref="T:System.Object" /> that conveys information about a remote function call.</returns>
/// <param name="headers">The headers of the event. </param>
// Token: 0x020006DA RID: 1754
// (Invoke) Token: 0x060041F0 RID: 16880
[ComVisible(true)]
public delegate object HeaderHandler(Header[] headers);
}