aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/ExtensionInfo.cs
blob: a493610460c4b3c217e29f5d9808aed90146957a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Google.ProtocolBuffers.Descriptors;

namespace Google.ProtocolBuffers
{
  public sealed class ExtensionInfo {
    /// <summary>
    /// The extension's descriptor
    /// </summary>
    public FieldDescriptor Descriptor { get; private set; }

    /// <summary>
    /// A default instance of the extensions's type, if it has a message type,
    /// or null otherwise.
    /// </summary>
    public IMessage DefaultInstance { get; private set; }

    internal ExtensionInfo(FieldDescriptor descriptor) : this(descriptor, null) {
    }

    internal ExtensionInfo(FieldDescriptor descriptor, IMessage defaultInstance) {
      Descriptor = descriptor;
      DefaultInstance = defaultInstance;
    }
  }
}