Interface IProfileResponse
Abstracts Neon Profile Service named pipe command responses.
Namespace: Neon.Deployment
Assembly: Neon.Common.dll
Syntax
public interface IProfileResponse
Properties
Error
Returns the error message for failed requests.
Declaration
string Error { get; }
Property Value
| Type | Description |
|---|---|
| string |
JObject
Returns the JObject for JSON responses.
Declaration
JObject JObject { get; }
Property Value
| Type | Description |
|---|---|
| JObject |
Success
Retrurns true for successful requests, false for failed ones.
Declaration
bool Success { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Value
Returns the response string (for non-JSON responses).
Declaration
string Value { get; }
Property Value
| Type | Description |
|---|---|
| string |