TableQuery.SelectColumns Property

Windows Runtime Azure Storage Client Library

Gets or sets the property names of the table entity properties to return when the table query is executed.

Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Usage

Visual Basic
Dim instance As TableQuery(Of TElement)
Dim value As IList(Of String)

value = instance.SelectColumns

instance.SelectColumns = value

Syntax

Visual Basic
Public Property SelectColumns As IList(Of String)
C#
public IList<string> SelectColumns { get; set; }
C++
public:
property IList<String^>^ SelectColumns {
	IList<String^>^ get ();
	void set (IList<String^>^ value);
}
J#
/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public IList<String> get_SelectColumns ()

/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public void set_SelectColumns (IList<String> value)
JScript
CompilerGeneratedAttribute 
public function get SelectColumns () : IList<String>

CompilerGeneratedAttribute 
public function set SelectColumns (value : IList<String>)

Property Value

A list of strings containing the property names of the table entity properties to return when the query is executed.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also