Class TcoRemoteTask
Remote tasks delegates its execution to C#. When this task is invoked a C# method will be called. To initiliaze
RemoteTask
with C# method use the Initiliaze
or InitializeExclusively
method.
partial void PexConstructor(IVortexObject parent, string readableTail, string symbolTail)
{
_remoteTaskInstance.InitializeExclusively(Create);
//_remoteTaskInstance.Initialize(Create);
}
private bool Create()
{
//your code.
return true;
}
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: PlcDocu.TcoCore
Assembly: TcoCoreConnector.dll
Syntax
public abstract class TcoRemoteTask : TcoTask
Remarks
Inxton is required for this feature to work
Constructors
| Improve this Doc View SourceTcoRemoteTask()
Prevents creating instance of this class via public constructor
Declaration
public TcoRemoteTask()
Fields
| Improve this Doc View Source_doneSignarure
Declaration
public object _doneSignarure
Field Value
Type | Description |
---|---|
System.Object |
_exceptionMessage
Declaration
public object _exceptionMessage
Field Value
Type | Description |
---|---|
System.Object |
_hasException
Declaration
public object _hasException
Field Value
Type | Description |
---|---|
System.Object |
_isInitialized
Declaration
public object _isInitialized
Field Value
Type | Description |
---|---|
System.Object |
_startSignature
Declaration
public object _startSignature
Field Value
Type | Description |
---|---|
System.Object |
Methods
| Improve this Doc View SourceRestore()
Restores this instance to the Ready state. Can be called explicitly or from within one of the restore mechanisms.
See also AutoRestorable
Declaration
[IgnoreReflection]
public dynamic Restore()
Returns
Type | Description |
---|---|
System.Object | Plc type ITcoRestorable; Twin type: |