LocalizationExtenderProvider.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //
  2. // System.ComponentModel.Design.LocalizationExtenderProvider
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. using System.Globalization;
  10. namespace System.ComponentModel.Design
  11. {
  12. [ProvideProperty("Localizable", typeof(object))]
  13. [ProvideProperty("Language", typeof(object))]
  14. [ProvideProperty("LoadLanguage", typeof(object))]
  15. public class LocalizationExtenderProvider : IExtenderProvider, IDisposable
  16. {
  17. [MonoTODO]
  18. public LocalizationExtenderProvider (ISite serviceProvider,
  19. IComponent baseComponent)
  20. {
  21. }
  22. [MonoTODO]
  23. public bool CanExtend (object o)
  24. {
  25. throw new NotImplementedException();
  26. }
  27. [MonoTODO]
  28. public void Dispose()
  29. {
  30. throw new NotImplementedException();
  31. }
  32. [MonoTODO]
  33. [Localizable (true)]
  34. [DesignOnly (true)]
  35. public CultureInfo GetLanguage (object o)
  36. {
  37. throw new NotImplementedException();
  38. }
  39. [MonoTODO]
  40. [DesignOnly (true)]
  41. [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
  42. [Browsable (false)]
  43. public CultureInfo GetLoadLanguage (object o)
  44. {
  45. throw new NotImplementedException();
  46. }
  47. [MonoTODO]
  48. [Localizable (true)]
  49. [DesignOnly (true)]
  50. public bool GetLocalizable (object o)
  51. {
  52. throw new NotImplementedException();
  53. }
  54. [MonoTODO]
  55. public void ResetLanguage (object o)
  56. {
  57. throw new NotImplementedException();
  58. }
  59. [MonoTODO]
  60. public void SetLanguage (object o, CultureInfo language)
  61. {
  62. throw new NotImplementedException();
  63. }
  64. [MonoTODO]
  65. public void SetLocalizable (object o, bool localizable)
  66. {
  67. throw new NotImplementedException();
  68. }
  69. [MonoTODO]
  70. public bool ShouldSerializeLanguage (object o)
  71. {
  72. throw new NotImplementedException();
  73. }
  74. }
  75. }