OPC Studio User's Guide and Reference
InputTypes Property (UACallArguments)



OpcLabs.EasyOpcUA Assembly > OpcLabs.EasyOpc.UA.OperationModel Namespace > UACallArguments Class : InputTypes Property
Specifies the types that should be used when passing the input arguments to the server.
Syntax
'Declaration
 
<CanBeNullAttribute()>
<IgnoreDataMemberAttribute()>
<XmlIgnoreAttribute()>
Public Property InputTypes As Type()
'Usage
 
Dim instance As UACallArguments
Dim value() As Type
 
instance.InputTypes = value
 
value = instance.InputTypes
[CanBeNull()]
[IgnoreDataMember()]
[XmlIgnore()]
public Type[] InputTypes {get; set;}
[CanBeNull()]
[IgnoreDataMember()]
[XmlIgnore()]
public:
property array<Type^>^ InputTypes {
   array<Type^>^ get();
   void set (    array<Type^>^ value);
}

Property Value

This value of this property can be null (Nothing in Visual Basic).

The individual elements of the property value cannot be null (Nothing in Visual Basic).

The default value of this property is null.

The types that should be used when passing the input arguments to the server.
Exceptions
ExceptionDescription

A null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Remarks

Element positions in this property correspond to argument positions in InputArguments.

A null value in this property, a null value in specific element, or a missing element (when there is fewer types than arguments) means that the input argument will be passed to the server without change.

The getter method of this property is pure, i.e. it does not have observable side effects.

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