Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / man / permview.1
1 .\" 
2 .\" permview manual page.
3 .\" Copyright (C) 2004-2007 Novell, Inc (http://www.novell.com)
4 .\" Author:
5 .\"   Sebastien Pouliot (sebastien@ximian.com)
6 .\"
7 .TH Mono "permview"
8 .SH NAME
9 permview \- Viewer for declarative security permission sets inside assemblies.
10 .SH SYNOPSIS
11 .PP
12 .B permview [options] assembly
13 .SH DESCRIPTION
14 This tools allow to list the declarative security attributes present in
15 an assembly. The security attributes are either found on the assembly level,
16 on the classes and the methods. This tool is useful to diagnose why an 
17 assembly won't load or why some class/method throws SecurityException.
18 .SH OPTIONS
19 .TP
20 .I -output filename
21 Output all declarative security attributes related informations into the
22 specified file.
23 .TP
24 .I -xml | --xml | /XML
25 Output all declarative security attributes in an XML format.
26 .TP
27 .I -decl | --decl | /DECL
28 Show declarative security attributes on classes and methods. The default,
29 without the
30 .B -decl
31 option, is to show only the assembly level permission sets.
32 .TP
33 .I -? | /? | -h[elp] | /h[elp]
34 Display help informations about the permview tool.
35
36 .SH EXAMPLES
37 .TP
38 .I permview mscorlib.dll
39 This will show the minimum, optional and refused permissions sets (i.e. the assembly
40 level security actions) that are compiled inside the mscorlib assembly.
41 .TP
42 .I permview -decl permview.exe
43 This will show all (assembly, class or method level) declarative security 
44 attributes present in the permview.exe assembly.
45
46 .SH AUTHOR
47 Written by Sebastien Pouliot
48 .SH COPYRIGHT
49 Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
50 .SH MAILING LISTS
51 Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
52 .SH WEB SITE
53 Visit http://www.mono-project.com for details