13 lines
382 B
C#
Raw Normal View History

2020-01-11 17:56:12 +01:00
namespace Capnp.Rpc
2019-06-12 21:56:55 +02:00
{
/// <summary>
/// A mono skeleton (as opposed to <see cref="PolySkeleton"/>) is a skeleton which implements one particular RPC interface.
/// </summary>
public interface IMonoSkeleton: IProvidedCapability
{
/// <summary>
/// Interface ID of this skeleton.
/// </summary>
ulong InterfaceId { get; }
}
2020-01-11 17:56:12 +01:00
}