ProcessModule.cs 835 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. //
  2. // System.Diagnostics.ProcessModule.cs
  3. //
  4. // Authors:
  5. // Dick Porter ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc.
  8. //
  9. using System;
  10. using System.ComponentModel;
  11. namespace System.Diagnostics {
  12. public class ProcessModule : Component {
  13. [MonoTODO]
  14. public IntPtr BaseAddress {
  15. get {
  16. return((IntPtr)0);
  17. }
  18. }
  19. [MonoTODO]
  20. public IntPtr EntryPointAddress {
  21. get {
  22. return((IntPtr)0);
  23. }
  24. }
  25. [MonoTODO]
  26. public string FileName {
  27. get {
  28. return("filename");
  29. }
  30. }
  31. [MonoTODO]
  32. public FileVersionInfo FileVersionInfo {
  33. get {
  34. return(null);
  35. }
  36. }
  37. [MonoTODO]
  38. public int ModuleMemorySize {
  39. get {
  40. return(0);
  41. }
  42. }
  43. [MonoTODO]
  44. public string ModuleName {
  45. get {
  46. return("module name");
  47. }
  48. }
  49. public override string ToString() {
  50. return(this.ModuleName);
  51. }
  52. }
  53. }