25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

13 satır
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.