Interface IStringOrObjectT
IStringOrObject<T> interface
Represents an object that can be either a string value or an object value.
public interface IStringOrObject<T>
where T : class
Parameter | Description |
---|
T | The type of the object value. |
Properties
Name | Description |
---|
IsObjectValue { get; } | Gets a value indicating whether the response format is an object value. |
IsStringValue { get; } | Gets a value indicating whether the response format is a string value. |
ObjectValue { get; set; } | Gets or sets the object value. |
StringValue { get; set; } | Gets or sets the string value. |
See Also