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