Interface IStringOrObjectT
Interfaccia IStringOrObject<T>
Rappresenta un oggetto che può essere sia un valore stringa che un valore oggetto.
public interface IStringOrObject<T>
where T : class
| Parametro | Descrizione |
|---|
| T | Il tipo del valore oggetto. |
Proprietà
| Nome | Descrizione |
|---|
| IsObjectValue { get; } | Ottiene un valore che indica se il formato di risposta è un valore oggetto. |
| IsStringValue { get; } | Ottiene un valore che indica se il formato di risposta è un valore stringa. |
| ObjectValue { get; set; } | Ottiene o imposta il valore oggetto. |
| StringValue { get; set; } | Ottiene o imposta il valore stringa. |
Vedi Anche