Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-12-17 22:17:36 +0300
committerSebastien Pouliot <sebastien@ximian.com>2004-12-17 22:17:36 +0300
commit45efea9cc181d94f4741a4c00f2a698e93176173 (patch)
tree9d0033e92439fd0331fd8b0ea98343012267beb2 /man
parent5250d4b3bfb0d0877d7c4a3e57fabb904a30151a (diff)
New. permview.1 man page
svn path=/trunk/mono/; revision=37896
Diffstat (limited to 'man')
-rw-r--r--man/permview.149
1 files changed, 49 insertions, 0 deletions
diff --git a/man/permview.1 b/man/permview.1
new file mode 100644
index 00000000000..f6d2542df0d
--- /dev/null
+++ b/man/permview.1
@@ -0,0 +1,49 @@
+.\"
+.\" permview manual page.
+.\" Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+.\" Author:
+.\" Sebastien Pouliot (sebastien@ximian.com)
+.\"
+.TH Mono "permview"
+.SH NAME
+permview \- Viewer for declarative security permission sets inside assemblies.
+.SH SYNOPSIS
+.PP
+.B permview [options] assembly
+.SH DESCRIPTION
+This tools allow to list the declarative security attributes present in
+an assembly. The security attributes are either found on the assembly level,
+on the classes and the methods. This tool is useful to diagnose why an
+assembly won't load or why some class/method throws SecurityException.
+.SH OPTIONS
+.TP
+.I /OUTPUT filename
+Output all declarative security attributes related informations into the
+specified file.
+.TP
+.I /DECL | -DECL | --DECL
+Show declarative security attributes on classes and methods. The default,
+without the /DECL option, is to show only the assembly level permission
+sets.
+.TP
+.I -? | /? | -H[ELP] | /H[ELP]
+Display help iinformations about the permview tool.
+
+.SH EXAMPLES
+.TP
+.I permview mscorlib.dll
+This will show the minimum, optional and refused permissions sets (i.e. the assembly
+level security actions) that are compiled inside the mscorlib assembly.
+.TP
+.I permview /decl permview.exe
+This will show all (assembly, class or method level) declarative security
+attributes present in the permview.exe assembly.
+
+.SH AUTHOR
+Written by Sebastien Pouliot
+.SH COPYRIGHT
+Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+.SH MAILING LISTS
+Visit http://mail.ximian.com/mailman/mono-list for details.
+.SH WEB SITE
+Visit: http://www.mono-project.com for details