Click or drag to resize

ValidateTopicResponse Class

** NOTE: ADDED in CFX 2.0 **

Response to a request that a specific topic (e.g., tool, material carrier, recipe, material) was successfull validated or not.

Example 1: Tools
{
  "ValidationTopic": "Tools",
  "Result": [
    {
      "Result": "Success",
      "ResultCode": 0,
      "Message": "Ok"
    },
    {
      "Result": "Failed",
      "ResultCode": 99,
      "Message": "Not Ok"
    }
  ]
}
Example 2: Materials
{
  "ValidationTopic": "Materials",
  "Result": [
    {
      "Result": "Success",
      "ResultCode": 0,
      "Message": "Ok"
    },
    {
      "Result": "Failed",
      "ResultCode": 99,
      "Message": "Not Ok"
    }
  ]
}
Example 3: MaterialCarrier
{
  "ValidationTopic": "MaterialCarrier",
  "Result": [
    {
      "Result": "Failed",
      "ResultCode": 301,
      "Message": "Not Ok"
    },
    {
      "Result": "Warning",
      "ResultCode": 10,
      "Message": "Check the material carrier"
    }
  ]
}
Example 4: Recipe
{
  "ValidationTopic": "Recipe",
  "Result": [
    {
      "Result": "Success",
      "ResultCode": 0,
      "Message": "Ok"
    }
  ]
}
Inheritance Hierarchy
SystemObject
  CFXCFXMessage
    CFX.InformationSystem.TopicValidationValidateTopicResponse

Namespace: CFX.InformationSystem.TopicValidation
Assembly: CFX (in CFX.dll) Version: 2.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
Syntax
public class ValidateTopicResponse : CFXMessage

The ValidateTopicResponse type exposes the following members.

Constructors
 NameDescription
Public methodValidateTopicResponse 
Top
Properties
 NameDescription
Public propertyResult The result of the request
Public propertyValidationTopic An enum for the specific validation topic of the request.
Top
See Also