maintainEmployeeResultDescr() Method

Table of Contents

  1. Function
  2. Syntax
  3. Parameters
  4. Return Value
  5. Sample Code
  6. Remarks
  7. Possible Errors
  8. Related Methods

Function

Syntax

  • String = AeXMLBridge.maintainEmployeeResultDescr(MaintainEmployeeResult);

Parameters

Return Value

  • Returns a string describing the maintain employee result value

Sample Code

C#

1
2
3
4
5
6
7
8
9
try
{
TMaintainEmployeeResult result = TMaintainEmployeeResult.merAddedWithErrors;
string myDescr = ws.maintainEmployeeResultDescr(result);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

VB.Net

1
2
3
4
5
6
Try
Dim result As TMaintainEmployeeResult = TMaintainEmployeeResult.merAddedWithErrors
Dim myDescr As String = ws.maintainEmployeeResultDescr(result)
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try

Remarks

  • None

Possible Errors

  • None

maintainEmployeeDetail2

Back to Top