2005-01-17 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / man / permview.1
1 .\" 
2 .\" permview manual page.
3 .\" Copyright (C) 2004 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 /DECL | -DECL | --DECL
25 Show declarative security attributes on classes and methods. The default,
26 without the /DECL option, is to show only the assembly level permission 
27 sets.
28 .TP
29 .I -? | /? | -H[ELP] | /H[ELP]
30 Display help iinformations about the permview tool.
31
32 .SH EXAMPLES
33 .TP
34 .I permview mscorlib.dll
35 This will show the minimum, optional and refused permissions sets (i.e. the assembly
36 level security actions) that are compiled inside the mscorlib assembly.
37 .TP
38 .I permview /decl permview.exe
39 This will show all (assembly, class or method level) declarative security 
40 attributes present in the permview.exe assembly.
41
42 .SH AUTHOR
43 Written by Sebastien Pouliot
44 .SH COPYRIGHT
45 Copyright (C) 2004 Novell, Inc (http://www.novell.com)
46 .SH MAILING LISTS
47 Visit http://mail.ximian.com/mailman/mono-list for details.
48 .SH WEB SITE
49 Visit: http://www.mono-project.com for details