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
ParametroDescrizione
TIl tipo del valore oggetto.

Proprietà

NomeDescrizione
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