#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd #endregion namespace Google.Protobuf.Reflection { /// /// Interface implemented by all descriptor types. /// public interface IDescriptor { /// /// Returns the name of the entity (message, field etc) being described. /// string Name { get; } /// /// Returns the fully-qualified name of the entity being described. /// string FullName { get; } /// /// Returns the descriptor for the .proto file that this entity is part of. /// FileDescriptor File { get; } } }