This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
<permission>
<permission cref="member">description</permission>
where:
- cref="member"
- A reference to a member or field that is available to be called from the current compilation environment. The compiler checks that the given code element exists and translates member to the canonical element name in the output XML. member must appear within double quotation marks (" ").
- description
- A description of the access to the member.
Remarks
The <permission> tag lets you document the access of a member. The System.Security.PermissionSet lets you specify access to a member.
Compile with /doc to process documentation comments to a file.
Example
using System;
class TestClass {
/// <permission cref="System.Security.PermissionSet">Everyone can access this method.</permission>
public static void Test() {
}
public static void Main() {
}
}
See Also
Tags for Documentation Comments