NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error CS0597

Too few unnamed arguments for attribute 'attribute'

An attribute did not have the required number of arguments.

The following sample generates CS0597:

[permissionset()]   // CS0597, permissionset requires additional parameters
public class a {
   public static void Main() {
   }
}