Click or drag to resize

GetAvailableRecipesResponse Class

** NOTE: ADDED in CFX 1.4 **

Response to a request of getting the available recipes. The response includes a list of recipes (name, revision), but not their data.
{
  "Result": {
    "Result": "Success",
    "ResultCode": 0,
    "Message": "OK"
  },
  "ActualCount": 3,
  "RecipeCount": 2,
  "Recipes": [
    {
      "RecipeName": "Recipe1",
      "Revision": "1.2"
    },
    {
      "RecipeName": "Recipe2",
      "Revision": "2.7"
    }
  ]
}
Inheritance Hierarchy
SystemObject
  CFXCFXMessage
    CFX.ProductionGetAvailableRecipesResponse

Namespace: CFX.Production
Assembly: CFX (in CFX.dll) Version: 1.7.3
Syntax
public class GetAvailableRecipesResponse : CFXMessage

The GetAvailableRecipesResponse type exposes the following members.

Constructors
 NameDescription
Public methodGetAvailableRecipesResponse Default Constructor
Top
Properties
 NameDescription
Public propertyActualCount The actual number of recipes that match the request.
Public propertyRecipeCount The number of recipes in the response list
Public propertyRecipes An optional list of the identified RecipeLean (RecipeName and Revision) structures
Public propertyResult The result of the request
Top
See Also