Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Contexts/IContributeDynamicSink.cs
T
2026-04-10 22:50:51 +02:00

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: 0x020004D6 RID: 1238
[Token(Token = "0x20004D6")]
[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: 0x0600284C RID: 10316
[Token(Token = "0x600284C")]
[Address(Slot = "0")]
IDynamicMessageSink GetDynamicSink();
}
}