Implemented interface member:
property
Value
Microsoft.TemplateEngine.Core.Contracts.ITokenConfig.Value
1 write to Value
Microsoft.TemplateEngine.Core (1)
TokenConfig.cs (1)
14
Value
= value;
6 references to Value
Microsoft.TemplateEngine.Core (6)
TokenConfig.cs (6)
37
return new TokenConfig(prefix,
Value
, Before);
42
return new TokenConfig(After,
Value
, suffix);
49
byte[] core = string.IsNullOrEmpty(
Value
) ? [] : encoding.GetBytes(
Value
);
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);