Show / Hide Table of Contents

Interface IDescriptor

Interface implemented by all descriptor types.

Namespace: Google.Protobuf.Reflection
Assembly: Google.Protobuf.dll
Syntax
public interface IDescriptor

Properties

File

Returns the descriptor for the .proto file that this entity is part of.

Declaration
FileDescriptor File { get; }
Property Value
Type Description
FileDescriptor

FullName

Returns the fully-qualified name of the entity being described.

Declaration
string FullName { get; }
Property Value
Type Description
System.String

Name

Returns the name of the entity (message, field etc) being described.

Declaration
string Name { get; }
Property Value
Type Description
System.String
Back to top