MessageDescriptor.cs 484 B

123456789101112131415161718
  1. 
  2. using System.Collections.Generic;
  3. namespace Google.ProtocolBuffers.Descriptors {
  4. public class MessageDescriptor {
  5. public IList<FieldDescriptor> Fields;
  6. public DescriptorProtos.MessageOptions Options;
  7. public string FullName;
  8. internal bool IsExtensionNumber(int fieldNumber) {
  9. throw new System.NotImplementedException();
  10. }
  11. internal FieldDescriptor FindFieldByNumber(int fieldNumber) {
  12. throw new System.NotImplementedException();
  13. }
  14. }
  15. }