Lazy
Lazily produce a value.
Can be used to return a string, list or numeric value whose actual value will only be calculated later, during synthesis.
Static Functions
Name | Description |
---|---|
AnyValue |
No description. |
ListValue |
No description. |
NumberValue |
No description. |
StringValue |
No description. |
AnyValue
using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.AnyValue(IAnyProducer Producer, LazyAnyValueOptions Options = null);
- Type: IAnyProducer
- Type: LazyAnyValueOptions
ListValue
using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.ListValue(IListProducer Producer, LazyListValueOptions Options = null);
- Type: IListProducer
- Type: LazyListValueOptions
NumberValue
using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.NumberValue(INumberProducer Producer);
- Type: INumberProducer
StringValue
using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.StringValue(IStringProducer Producer, LazyStringValueOptions Options = null);
- Type: IStringProducer
- Type: LazyStringValueOptions