您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
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.