EnumDescriptor.cs 469 B

12345678910111213
  1. 
  2. using Google.ProtocolBuffers.DescriptorProtos;
  3. namespace Google.ProtocolBuffers.Descriptors {
  4. public class EnumDescriptor : IndexedDescriptorBase<EnumDescriptorProto, EnumOptions> {
  5. internal EnumDescriptor(EnumDescriptorProto proto, EnumOptions options, FileDescriptor file, int index)
  6. : base(proto, file, index) {
  7. }
  8. internal EnumValueDescriptor FindValueByNumber(int rawValue) {
  9. throw new System.NotImplementedException();
  10. }
  11. }
  12. }