Gets an enumerable collection of results.
Namespace: Microsoft.WindowsAzure.Storage.Table
Assembly: Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)
Usage
Visual Basic |
---|
Dim instance As TableQuerySegment(Of TElement)
Dim value As List(Of TElement)
value = instance.Results
|
Syntax
Visual Basic |
---|
Public Property Results As List(Of TElement) |
C# |
---|
public List<TElement> Results { get; } |
C++ |
---|
public:
property List<TElement>^ Results {
List<TElement>^ get ();
} |
J# |
---|
/** @property */
/** @attribute CompilerGeneratedAttribute() */
public List<TElement> get_Results ()
|
JScript |
---|
CompilerGeneratedAttribute
public function get Results () : List<TElement>
|
Property Value
An enumerable collection of results.
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
See Also