C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
DataSubResource.cs
Go to the documentation of this file.
1namespace AnalyzeRe.APITypes
2{
6 public class DataSubResource : SubResource<string>
7 {
8 #region Properties
10 protected string PUT_ContentType = "application/octet-stream";
11 #endregion Properties
12
13 #region Constructors
19 #endregion Constructors
20 }
21}
Describes an additional data sub-resource available off a resource. Endpoint supports GET and PUT.
string PUT_ContentType
The contentType to set when submitting this resource's body in a PUT request.
DataSubResource(IEndpoint owner, string relativePath)
Defines a new data sub-resource off of some other endpoint.
Describes a collection of resources which can be listed.
Describes an additional sub-resource available off a resource which is not actually a property of tha...
Describes an endpoint on the server that can be interacted with. Inheriting from this interface means...
Definition IEndpoint.cs:10