Show / Hide Table of Contents

Class EnvelopeTask

They are the task elements to be executed.

Inheritance
System.Object
EnvelopeTask
Implements
System.ComponentModel.INotifyPropertyChanged
Namespace: IFSWebServices.XmlInternationalServices
Assembly: WebServices.dll
Syntax
[Serializable]
public class EnvelopeTask : INotifyPropertyChanged

Properties

Code

It indicates which task should be or has been performed by the Web server. It is a string.

Declaration
public ST_TaskCode Code { get; set; }
Property Value
Type Description
ST_TaskCode

DateTime

UTC date and time of the task execution. It is only and always present in result envelope. For example 2002-05-30T09:30:10Z

Declaration
public DateTime DateTime { get; set; }
Property Value
Type Description
System.DateTime

DateTimeSpecified

Identify if datetime is present or not in in call envelope.

Declaration
public bool DateTimeSpecified { get; set; }
Property Value
Type Description
System.Boolean

Item

List of items that have to be or have been processed by the task execution

Declaration
public List<EnvelopeTaskItem> Item { get; set; }
Property Value
Type Description
System.Collections.Generic.List<EnvelopeTaskItem>

Success

It indicates if the task execution is successful for every item or if the task failed. Only and always present in result envelope. It is a boolean. If one item has a result/Code different than success, the task/Success is false.

Declaration
public bool Success { get; set; }
Property Value
Type Description
System.Boolean

SuccessSpecified

Identify if success is present or not in in call envelope.

Declaration
public bool SuccessSpecified { get; set; }
Property Value
Type Description
System.Boolean

Methods

RaisePropertyChanged(String)

Declaration
protected void RaisePropertyChanged(string propertyName)
Parameters
Type Name Description
System.String propertyName

Events

PropertyChanged

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type Description
System.ComponentModel.PropertyChangedEventHandler

Implements

System.ComponentModel.INotifyPropertyChanged
Back to top Generated by DocFX