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 -xml | --xml | /XML
25 Output all declarative security attributes in an XML format.
26
27 -decl | --decl | /DECL
28 Show declarative security attributes on classes and methods. The
29 default, without the -decl option, is to show only the assembly
30 level permission sets.
31
32 -? | /? | -h[elp] | /h[elp]
33 Display help informations about the permview tool.
34
35
37 permview mscorlib.dll
38 This will show the minimum, optional and refused permissions
39 sets (i.e. the assembly level security actions) that are com‐
40 piled inside the mscorlib assembly.
41
42 permview -decl permview.exe
43 This will show all (assembly, class or method level) declarative
44 security attributes present in the permview.exe assembly.
45
46
48 Written by Sebastien Pouliot
49
51 Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
52
54 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for
55 details.
56
58 Visit http://www.mono-project.com for details
59
60
61
62 Mono(permview)