| 123456789101112131415161718192021222324252627282930 |
- //
- // IOciDescriptorHandle.cs
- //
- // Part of managed C#/.NET library System.Data.OracleClient.dll
- //
- // Part of the Mono class libraries at
- // mcs/class/System.Data.OracleClient/System.Data.OracleClient.Oci
- //
- // Assembly: System.Data.OracleClient.dll
- // Namespace: System.Data.OracleClient.Oci
- //
- // Author:
- // Tim Coleman <[email protected]>
- //
- // Copyright (C) Tim Coleman, 2003
- //
- using System;
- namespace System.Data.OracleClient.Oci {
- internal interface IOciDescriptorHandle
- {
- #region Properties
- IntPtr Handle { get; set; }
- OciDescriptorType HandleType { get; }
- #endregion // Properties
- }
- }
|