Delegates.cs 372 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Google.ProtocolBuffers.FieldAccess {
  5. /// <summary>
  6. /// Declarations of delegate types used for field access. Can't
  7. /// use Func and Action (other than one parameter) as we can't guarantee .NET 3.5.
  8. /// </summary>
  9. internal delegate bool HasFunction<TMessage>(TMessage message);
  10. }