Implemented interface member:
property
After
Microsoft.TemplateEngine.Core.Contracts.ITokenConfig.After
1 write to After
Microsoft.TemplateEngine.Core (1)
TokenConfig.cs (1)
13
After
= after;
5 references to After
Microsoft.TemplateEngine.Core (5)
TokenConfig.cs (5)
42
return new TokenConfig(
After
, Value, suffix);
47
byte[] pre = string.IsNullOrEmpty(
After
) ? [] : encoding.GetBytes(
After
);
78
return (Before?.GetHashCode() ?? 0) ^ (
After
?.GetHashCode() ?? 0) ^ (Value?.GetHashCode() ?? 0);
83
return other != null && string.Equals(other.Before, Before, StringComparison.Ordinal) && string.Equals(other.After,
After
, StringComparison.Ordinal) && string.Equals(other.Value, Value, StringComparison.Ordinal);