aboutsummaryrefslogblamecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/MessageDescriptor.cs
blob: 971bc3eb1259251b860bb655623bd4a99cd65186 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                 
                                              

                                              
                                                                                    
                                         


                                                                                                







                                                                 

   
using System.Collections.Generic;
using Google.ProtocolBuffers.DescriptorProtos;

namespace Google.ProtocolBuffers.Descriptors {
  public class MessageDescriptor : DescriptorBase<DescriptorProto, MessageOptions> {
    public IList<FieldDescriptor> Fields;

    internal MessageDescriptor(DescriptorProto proto, FileDescriptor file) : base(proto, file) {
    }

    internal bool IsExtensionNumber(int fieldNumber) {
      throw new System.NotImplementedException();
    }

    internal FieldDescriptor FindFieldByNumber(int fieldNumber) {
      throw new System.NotImplementedException();
    }
  }
}