1Mono(permview) Mono(permview)
2
3
4
6 permview - Viewer for declarative security permission sets inside
7 assemblies.
8
10 permview [options] assembly
11
13 This tools allow to list the declarative security attributes present in
14 an assembly. The security attributes are either found on the assembly
15 level, on the classes and the methods. This tool is useful to diagnose
16 why an assembly won't load or why some class/method throws SecurityEx‐
17 ception.
18
20 -output filename
21 Output all declarative security attributes related informations
22 into the specified file.
23
24 -decl | --decl | /DECL
25 Show declarative security attributes on classes and methods. The
26 default, without the -decl option, is to show only the assembly
27 level permission sets.
28
29 -? | /? | -h[elp] | /h[elp]
30 Display help informations about the permview tool.
31
32
34 permview mscorlib.dll
35 This will show the minimum, optional and refused permissions
36 sets (i.e. the assembly level security actions) that are com‐
37 piled inside the mscorlib assembly.
38
39 permview -decl permview.exe
40 This will show all (assembly, class or method level) declarative
41 security attributes present in the permview.exe assembly.
42
43
45 Written by Sebastien Pouliot
46
48 Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
49
51 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for
52 details.
53
55 Visit http://www.mono-project.com for details
56
57
58
59 Mono(permview)