|   | ActionAdapterBaseRespectOutputDemands Property | 
        
        
            Gets or sets flag indicating if action adapter should respect auto-start requests based on output demands.
            
        
        Namespace: GSF.TimeSeries.AdaptersAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic virtual bool RespectOutputDemands { get; set; }Public Overridable Property RespectOutputDemands As Boolean
	Get
	Set
public:
virtual property bool RespectOutputDemands {
	bool get ();
	void set (bool value);
}abstract RespectOutputDemands : bool with get, set
override RespectOutputDemands : bool with get, set
function get_RespectOutputDemands();
function set_RespectOutputDemands(value);
Property Value
BooleanImplements
IActionAdapterRespectOutputDemands Remarks
Remarks
            Action adapters are in the curious position of being able to both consume and produce points, as such the user needs to be able to control how their
            adapter will behave concerning routing demands when the adapter is setup to connect on demand. In the case of respecting auto-start output demands,
            as an example, this would be true for an action adapter that calculated measurement, but false for an action adapter used to archive inputs.
            
 See Also
See Also