Each response object takes the form of the following examples:
Response Object Examples | |
---|---|
public class GetDataServersResponse : ResponseBase public class SubmitCreateDatabaseResponse : ResponseBase public class UpdateExposureSetResponse : ResponseBase |
The response classes expose properties that get or set the data returned by the methods, for example:
Response Class Property Example | |
---|---|
// Returns the Activity Sequential Identifier (SID). To get the status of the Database creation // process (also called the Database activity), pass the Activity SID into the Activity // Monitor API's GetActivityRequest class. [DataContract(Namespace = "http://schemas.air-worldwide.com/Services/DataSourceManagement/Api")] public class SubmitCreateDatabaseResponse : ResponseBase { // Gets or sets the Activity SID. // The Activity SID is a Touchstone-generated integer // Sequential Identifier that tracks the status of an activity. [DataMember] public int ActivitySid { get; set; } } |