You've already forked linux-packaging-mono
29 lines
513 B
C#
29 lines
513 B
C#
//
|
|
// OracleLobOpenMode.cs
|
|
//
|
|
// Part of the Mono class libraries at
|
|
// mcs/class/System.Data.OracleClient/System.Data.OracleClient
|
|
//
|
|
// Assembly: System.Data.OracleClient.dll
|
|
// Namespace: System.Data.OracleClient
|
|
//
|
|
// Author: Tim Coleman <tim@timcoleman.com>
|
|
//
|
|
// Copyright (C) Tim Coleman, 2003
|
|
//
|
|
// Licensed under the MIT/X11 License.
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace System.Data.OracleClient {
|
|
#if !NET_2_0
|
|
[Serializable]
|
|
#endif
|
|
public enum OracleLobOpenMode
|
|
{
|
|
ReadOnly = 0x01,
|
|
ReadWrite = 0x02
|
|
}
|
|
}
|