summaryrefslogtreecommitdiff
path: root/csharp/src/Ice/SocketOperation.cs
blob: 07eb60d364d580a16a1e08bf57aefb2ccbbe1a69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

namespace IceInternal
{
    public sealed class SocketOperation
    {
        public const int None = 0;
        public const int Read = 1;
        public const int Write = 2;
        public const int Connect = 2;
    }
}