Skip to content

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);

ProducerRequired


OptionsOptional


ListValue

using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.ListValue(IListProducer Producer, LazyListValueOptions Options = null);

ProducerRequired


OptionsOptional


NumberValue

using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.NumberValue(INumberProducer Producer);

ProducerRequired


StringValue

using AlibabaCloud.SDK.ROS.CDK.Core;
Lazy.StringValue(IStringProducer Producer, LazyStringValueOptions Options = null);

ProducerRequired


OptionsOptional