Lines Matching defs:proto
43 private readonly MethodDescriptorProto proto;
66 public bool IsClientStreaming { get { return proto.ClientStreaming; } }
71 public bool IsServerStreaming { get { return proto.ServerStreaming; } }
80 /// The <c>MethodOptions</c>, defined in <c>descriptor.proto</c>.
106 internal MethodDescriptor(MethodDescriptorProto proto, FileDescriptor file,
108 : base(file, parent.FullName + "." + proto.Name, index)
110 this.proto = proto;
115 internal MethodDescriptorProto Proto { get { return proto; } }
120 public override string Name { get { return proto.Name; } }