1 write to _value
Aspire.Hosting.Azure.Provisioning (1)
BicepValueProxy.cs (1)
24_value = value;
11 references to _value
Aspire.Hosting.Azure.Provisioning (11)
BicepValueProxy.cs (11)
33internal BicepValueKind Kind => _value.Kind; 39internal bool IsSecure => _forcedSecure || _value.IsSecure; 90if (_value.Kind == BicepValueKind.Literal) 94var literal = typeof(T) == typeof(IPAddress) && _value.LiteralValue is string address 96: (T)_value.LiteralValue!; 168return _value.ToBicepExpression(); 183if (_value.Kind != BicepValueKind.Literal && _valueType == typeof(object)) 203var valueDescription = _value.Kind == BicepValueKind.Literal ? "literal" : "value"; 214return IsSecure && !_value.IsSecure 215? new SecureBicepValue(_value) 216: _value;