Implemented interface member:
property
Before
Microsoft.TemplateEngine.Core.Contracts.ITokenConfig.Before
1 write to Before
Microsoft.TemplateEngine.Core (1)
TokenConfig.cs (1)
15
Before
= before;
5 references to Before
Microsoft.TemplateEngine.Core (5)
TokenConfig.cs (5)
37
return new TokenConfig(prefix, Value,
Before
);
48
byte[] post = string.IsNullOrEmpty(
Before
) ? [] : encoding.GetBytes(
Before
);
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);