16 lines
603 B
C#
16 lines
603 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Remoting.Messaging
|
|
{
|
|
/// <summary>Represents the method that will handle processing of headers on the stream during deserialization.</summary>
|
|
/// <param name="headers">The headers of the event.</param>
|
|
/// <returns>A <see cref="T:System.Object" /> that conveys information about a remote function call.</returns>
|
|
// Token: 0x0200052B RID: 1323
|
|
// (Invoke) Token: 0x06002B46 RID: 11078
|
|
[Token(Token = "0x200052B")]
|
|
[ComVisible(true)]
|
|
public delegate object HeaderHandler(Header[] headers);
|
|
}
|