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: 0x020004F0 RID: 1264
[Token(Token = "0x20004F0")]
[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: 0x1700060D RID: 1549
// (get) Token: 0x06002A55 RID: 10837
[Token(Token = "0x1700060D")]
string Name
{
[Token(Token = "0x6002A55")]
[Address(Slot = "0")]
get;
}
/// Called when the context is frozen.
/// The context to freeze.
// Token: 0x06002A56 RID: 10838
[Token(Token = "0x6002A56")]
[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: 0x06002A57 RID: 10839
[Token(Token = "0x6002A57")]
[Address(Slot = "2")]
bool IsNewContextOK(Context newCtx);
}
}