This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Activation;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Identifies a context attribute.</summary>
// Token: 0x020003C0 RID: 960
[ComVisible(true)]
public interface IContextAttribute
{
/// <summary>Returns context properties to the caller in the given message.</summary>
/// <param name="msg">The <see cref="T:System.Runtime.Remoting.Activation.IConstructionCallMessage" /> to which to add the context properties. </param>
// Token: 0x06002625 RID: 9765
void GetPropertiesForNewContext(IConstructionCallMessage msg);
/// <summary>Returns a Boolean value indicating whether the specified context meets the context attribute's requirements.</summary>
/// <returns>true if the passed in context is okay; otherwise, false.</returns>
/// <param name="ctx">The context to check against the current context attribute. </param>
/// <param name="msg">The construction call, parameters of which need to be checked against the current context. </param>
// Token: 0x06002626 RID: 9766
bool IsContextOK(Context ctx, IConstructionCallMessage msg);
}
}