PropertyInformation.Value Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un oggetto contenente il valore correlato a un attributo di configurazione.
public:
property System::Object ^ Value { System::Object ^ get(); void set(System::Object ^ value); };
public object Value { get; set; }
member this.Value : obj with get, set
Public Property Value As Object
Valore della proprietà
Oggetto contenente il valore dell'oggetto PropertyInformation.
Esempio
Nell'esempio di codice seguente viene illustrato come usare la Value proprietà. Questo esempio di codice fa parte di un esempio più grande fornito per la PropertyInformation classe.
// Display the Value property.
Console.WriteLine("Value: {0}", propertyItem.Value);
' Display the Value property.
Console.WriteLine("Value: {0}", propertyItem.Value)