IOciDescriptorHandle.cs 632 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // IOciDescriptorHandle.cs
  3. //
  4. // Part of managed C#/.NET library System.Data.OracleClient.dll
  5. //
  6. // Part of the Mono class libraries at
  7. // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
  8. //
  9. // Assembly: System.Data.OracleClient.dll
  10. // Namespace: System.Data.OracleClient.Oci
  11. //
  12. // Author:
  13. // Tim Coleman <[email protected]>
  14. //
  15. // Copyright (C) Tim Coleman, 2003
  16. //
  17. using System;
  18. namespace System.Data.OracleClient.Oci {
  19. internal interface IOciDescriptorHandle
  20. {
  21. #region Properties
  22. IntPtr Handle { get; set; }
  23. OciDescriptorType HandleType { get; }
  24. #endregion // Properties
  25. }
  26. }