QuickOPC User's Guide and Reference
State Property (OperationResult)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.OperationModel Namespace > OperationResult Class : State Property
Gets or sets the arbitrary object associated with the operation.
Syntax
'Declaration
 
<DataMemberAttribute()>
<DefaultValueAttribute("")>
<DisplayAttribute(AutoGenerateField=True, 
   Order=1, 
   ShortName="State")>
Public Property State As Object
'Usage
 
Dim instance As OperationResult
Dim value As Object
 
instance.State = value
 
value = instance.State
[DataMember()]
[DefaultValue("")]
[Display(AutoGenerateField=true, 
   Order=1, 
   ShortName="State")]
public object State {get; set;}
[DataMember()]
[DefaultValue("")]
[Display(AutoGenerateField=true, 
   Order=1, 
   ShortName="State")]
public:
property Object^ State {
   Object^ get();
   void set (    Object^ value);
}
Remarks

The State object is valid independent of whether the operation has succeeded or failed. It is a copy of the State object passed to the operation as its input. The semantics of this value depends on the application.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also