mscorlib(4.0.0.0) API with additions
IContextProperty.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IContextProperty
9  {
12  string Name
13  {
14  [SecurityCritical]
15  get;
16  }
17 
22  [SecurityCritical]
23  bool IsNewContextOK(Context newCtx);
24 
27  [SecurityCritical]
28  void Freeze(Context newContext);
29  }
30 }
Gathers naming information from the context property and determines whether the new context is ok for...
Definition: __Canon.cs:3
Defines an environment for the objects that are resident inside it and for which a policy can be enfo...
Definition: Context.cs:14
string Name
Gets the name of the property under which it will be added to the context.
bool IsNewContextOK(Context newCtx)
Returns a Boolean value indicating whether the context property is compatible with the new context.
void Freeze(Context newContext)
Called when the context is frozen.