permview.1 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .\"
  2. .\" permview manual page.
  3. .\" Copyright (C) 2004-2007 Novell, Inc (http://www.novell.com)
  4. .\" Author:
  5. .\" Sebastien Pouliot ([email protected])
  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. .SH EXAMPLES
  36. .TP
  37. .I permview mscorlib.dll
  38. This will show the minimum, optional and refused permissions sets (i.e. the assembly
  39. level security actions) that are compiled inside the mscorlib assembly.
  40. .TP
  41. .I permview -decl permview.exe
  42. This will show all (assembly, class or method level) declarative security
  43. attributes present in the permview.exe assembly.
  44. .SH AUTHOR
  45. Written by Sebastien Pouliot
  46. .SH COPYRIGHT
  47. Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
  48. .SH MAILING LISTS
  49. Visit http://lists.ximian.com/mailman/listinfo/mono-devel-list for details.
  50. .SH WEB SITE
  51. Visit http://www.mono-project.com for details