mscorlib(4.0.0.0) API with additions
IDynamicProperty.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IDynamicProperty
9  {
12  string Name
13  {
14  [SecurityCritical]
15  get;
16  }
17  }
18 }
Indicates that the implementing property should be registered at runtime through the M:System....
Definition: __Canon.cs:3
string Name
Gets the name of the dynamic property.