Exemplo n.º 1
0
 internal static void SafeDispose(ref OciLobLocator locator)
 {
     if (locator != null)
     {
         locator.Dispose();
     }
     locator = null;
 }
Exemplo n.º 2
0
        internal static void SafeDispose(ref OciLobLocator locator)
        {
            //	Safely disposes of the handle (even if it is already null) and
            //	then nulls it out.
            if (null != locator)
            {
                locator.Dispose();
            }

            locator = null;
        }
Exemplo n.º 3
0
 void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (locator != null)
         {
             locator.Dispose();
         }
     }
     locator = null;
     isOpen  = false;
 }
 internal static void SafeDispose(ref OciLobLocator locator)
 {
     if (locator != null)
     {
         locator.Dispose();
     }
     locator = null;
 }