aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/EnumDescriptor.cs
blob: 1ebe5a7e8b47d275ba9378af62a09b366dad2669 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Google.ProtocolBuffers.DescriptorProtos;
namespace Google.ProtocolBuffers.Descriptors {
  public class EnumDescriptor : IndexedDescriptorBase<EnumDescriptorProto, EnumOptions> {
    internal EnumDescriptor(EnumDescriptorProto proto, EnumOptions options, FileDescriptor file, int index)
        : base(proto, file, index) {
    }

    internal EnumValueDescriptor FindValueByNumber(int rawValue) {
      throw new System.NotImplementedException();
    }
  }
}