Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

13 rindas
414B

  1. namespace Campaign_Tracker.Server.ExtensionData;
  2. /// <summary>
  3. /// Validates that a <see cref="LegacyLinkReference"/> resolves to an existing legacy record
  4. /// before an extension record is persisted (AC #3).
  5. /// </summary>
  6. public interface ILegacyLinkValidator
  7. {
  8. Task<LegacyLinkValidationResult> ValidateAsync(
  9. LegacyLinkReference reference,
  10. CancellationToken cancellationToken = default);
  11. }

Powered by TurnKey Linux.