21 lines
1.0 KiB
C#
21 lines
1.0 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.Remoting.Contexts
|
|
{
|
|
/// <summary>Indicates that the implementing property will be registered at runtime through the <see cref="M:System.Runtime.Remoting.Contexts.Context.RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)" /> method.</summary>
|
|
// Token: 0x020004F2 RID: 1266
|
|
[Token(Token = "0x20004F2")]
|
|
[ComVisible(true)]
|
|
public interface IContributeDynamicSink
|
|
{
|
|
/// <summary>Returns the message sink that will be notified of call start and finish events through the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicMessageSink" /> interface.</summary>
|
|
/// <returns>A dynamic sink that exposes the <see cref="T:System.Runtime.Remoting.Contexts.IDynamicMessageSink" /> interface.</returns>
|
|
// Token: 0x06002A59 RID: 10841
|
|
[Token(Token = "0x6002A59")]
|
|
[Address(Slot = "0")]
|
|
IDynamicMessageSink GetDynamicSink();
|
|
}
|
|
}
|