using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Remoting.Contexts { /// Gathers naming information from the context property and determines whether the new context is ok for the context property. // Token: 0x020004D4 RID: 1236 [Token(Token = "0x20004D4")] [ComVisible(true)] public interface IContextProperty { /// Gets the name of the property under which it will be added to the context. /// The name of the property. // Token: 0x17000595 RID: 1429 // (get) Token: 0x06002848 RID: 10312 [Token(Token = "0x17000595")] string Name { [Token(Token = "0x6002848")] [Address(Slot = "0")] get; } /// Called when the context is frozen. /// The context to freeze. // Token: 0x06002849 RID: 10313 [Token(Token = "0x6002849")] [Address(Slot = "1")] void Freeze(Context newContext); /// Returns a Boolean value indicating whether the context property is compatible with the new context. /// The new context in which the has been created. /// /// if the context property can coexist with the other context properties in the given context; otherwise, . // Token: 0x0600284A RID: 10314 [Token(Token = "0x600284A")] [Address(Slot = "2")] bool IsNewContextOK(Context newCtx); } }