| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // OciLobLocator.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;
- using System.Runtime.InteropServices;
- namespace System.Data.OracleClient.Oci {
- internal sealed class OciLobLocator : OciDescriptorHandle, IOciDescriptorHandle, IDisposable
- {
- #region Constructors
- public OciLobLocator (OciEnvironmentHandle environment, IntPtr handle)
- : base (OciDescriptorType.LobLocator, environment, handle)
- {
- }
- #endregion // Constructors
- #region Methods
- public void Dispose ()
- {
- Environment.FreeDescriptor (this);
- }
- #endregion // Methods
- }
- }
|