Class ApiParameter
ApiParameter is used to store a Key that will be used as a direct substitution
in an Api Query string. On implementation the InsertParameter method must be implemented.
InsertParameter takes in the Api Query string that the parameters are being created for.
Assembly: LemonEdge.ApiConnector.dll
Syntax
public abstract class ApiParameter
Constructors
ApiParameter(string)
Declaration
protected ApiParameter(string key)
Parameters
Type |
Name |
Description |
string |
key |
|
Properties
Key
Declaration
public string Key { get; }
Property Value
Methods
InsertParameter(string)
Declaration
public abstract string InsertParameter(string apiQueryString)
Parameters
Type |
Name |
Description |
string |
apiQueryString |
|
Returns
Extension Methods