Permalink
Fetching contributors…
Cannot retrieve contributors at this time
464 lines (464 sloc) 25.1 KB
<Type Name="MobileServiceCollection&lt;TTable,TCollection&gt;" FullName="Microsoft.WindowsAzure.MobileServices.MobileServiceCollection&lt;TTable,TCollection&gt;">
<TypeSignature Language="C#" Value="public class MobileServiceCollection&lt;TTable,TCollection&gt; : System.Collections.ObjectModel.ObservableCollection&lt;TCollection&gt;, Microsoft.WindowsAzure.MobileServices.IQueryResultEnumerable&lt;TCollection&gt;, Microsoft.WindowsAzure.MobileServices.ITotalCountProvider, System.Collections.Generic.IEnumerable&lt;TCollection&gt;" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit MobileServiceCollection`2&lt;TTable, TCollection&gt; extends System.Collections.ObjectModel.ObservableCollection`1&lt;!TCollection&gt; implements class Microsoft.WindowsAzure.MobileServices.IQueryResultEnumerable`1&lt;!TCollection&gt;, class Microsoft.WindowsAzure.MobileServices.ITotalCountProvider, class System.Collections.Generic.IEnumerable`1&lt;!TCollection&gt;, class System.Collections.IEnumerable" />
<TypeSignature Language="DocId" Value="T:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2" />
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<TypeParameters>
<TypeParameter Name="TTable" />
<TypeParameter Name="TCollection" />
</TypeParameters>
<Base>
<BaseTypeName>System.Collections.ObjectModel.ObservableCollection&lt;TCollection&gt;</BaseTypeName>
<BaseTypeArguments>
<BaseTypeArgument TypeParamName="!0">TCollection</BaseTypeArgument>
</BaseTypeArguments>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Microsoft.WindowsAzure.MobileServices.IQueryResultEnumerable&lt;TCollection&gt;</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.WindowsAzure.MobileServices.ITotalCountProvider</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Collections.Generic.IEnumerable&lt;TCollection&gt;</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<typeparam name="TTable">Data source element type.</typeparam>
<typeparam name="TCollection">Type of elements ending up in the collection.</typeparam>
<summary>
An asynchronous data source that can wrap the results of a Mobile
Services query in a way that's easily consumed by Xaml collection
controls like ListView, GridView or ListBox.
</summary>
<remarks>
Currently handles asynchronously loading the data, notifying the controls and paging.
Use the <see cref="T:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`1" /> class if the table and collection items
are of the same type.
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt; query, int pageSize = 0);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1&lt;!TTable&gt; query, int32 pageSize) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.#ctor(Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery{`0},System.Int32)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<Parameters>
<Parameter Name="query" Type="Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt;" />
<Parameter Name="pageSize" Type="System.Int32" />
</Parameters>
<Docs>
<param name="query">
The data source's query which provides the data.
</param>
<param name="pageSize">
The number of items requested per request.
</param>
<summary>
Initializes a new instance of the <see cref="T:IncrementalLoadingMobileServiceCollection{TTable, TCollection}" />
class. This constructior should be used in cases where TTable and TCollection are the same type.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt; query, Func&lt;System.Collections.Generic.IEnumerable&lt;TTable&gt;,System.Collections.Generic.IEnumerable&lt;TCollection&gt;&gt; selector, int pageSize = 0);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1&lt;!TTable&gt; query, class System.Func`2&lt;class System.Collections.Generic.IEnumerable`1&lt;!TTable&gt;, class System.Collections.Generic.IEnumerable`1&lt;!TCollection&gt;&gt; selector, int32 pageSize) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.#ctor(Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery{`0},System.Func{System.Collections.Generic.IEnumerable{`0},System.Collections.Generic.IEnumerable{`1}},System.Int32)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<Parameters>
<Parameter Name="query" Type="Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt;" />
<Parameter Name="selector" Type="System.Func&lt;System.Collections.Generic.IEnumerable&lt;TTable&gt;,System.Collections.Generic.IEnumerable&lt;TCollection&gt;&gt;" />
<Parameter Name="pageSize" Type="System.Int32" />
</Parameters>
<Docs>
<param name="query">
The data source's query which provides the data.
</param>
<param name="selector">
A selector function to provide client side projections.
</param>
<param name="pageSize">
The number of items requested per request.
</param>
<summary>
Initializes a new instance of the <see cref="T:IncrementalLoadingMobileServiceCollection{TTable, TCollection}" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public MobileServiceCollection (Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt; query, Func&lt;TTable,TCollection&gt; selector, int pageSize = 0);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1&lt;!TTable&gt; query, class System.Func`2&lt;!TTable, !TCollection&gt; selector, int32 pageSize) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.#ctor(Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery{`0},System.Func{`0,`1},System.Int32)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<Parameters>
<Parameter Name="query" Type="Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt;" />
<Parameter Name="selector" Type="System.Func&lt;TTable,TCollection&gt;" />
<Parameter Name="pageSize" Type="System.Int32" />
</Parameters>
<Docs>
<param name="query">
The data source's query which provides the data.
</param>
<param name="selector">
A selector function to provide client side projections.
</param>
<param name="pageSize">
The number of items requested per request.
</param>
<summary>
Initializes a new instance of the <see cref="T:IncrementalLoadingMobileServiceCollection{TTable, TCollection}" />
class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="HasMoreItems">
<MemberSignature Language="C#" Value="public bool HasMoreItems { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool HasMoreItems" />
<MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.HasMoreItems" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets a value indicating whether there are more items that can be
loaded incrementally.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LoadingComplete">
<MemberSignature Language="C#" Value="public event EventHandler&lt;Microsoft.WindowsAzure.MobileServices.LoadingCompleteEventArgs&gt; LoadingComplete;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler`1&lt;class Microsoft.WindowsAzure.MobileServices.LoadingCompleteEventArgs&gt; LoadingComplete" />
<MemberSignature Language="DocId" Value="E:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.LoadingComplete" />
<MemberType>Event</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler&lt;Microsoft.WindowsAzure.MobileServices.LoadingCompleteEventArgs&gt;</ReturnType>
</ReturnValue>
<Docs>
<summary>
Occurs when finished loading items. Provides
<see cref="T:Microsoft.WindowsAzure.MobileServices.LoadingCompleteEventArgs" /> with
how many items were loaded.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LoadingItems">
<MemberSignature Language="C#" Value="public event EventHandler LoadingItems;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler LoadingItems" />
<MemberSignature Language="DocId" Value="E:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.LoadingItems" />
<MemberType>Event</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<summary>
Occurs when <see cref="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.LoadMoreItemsAsync(System.Int32)" />
starting to load items.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LoadMoreItemsAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task&lt;int&gt; LoadMoreItemsAsync (int count = 0);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task`1&lt;int32&gt; LoadMoreItemsAsync(int32 count) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.LoadMoreItemsAsync(System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task&lt;System.Int32&gt;</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="count" Type="System.Int32" />
</Parameters>
<Docs>
<param name="count">
The number of items to load.
This parameter overrides the pageSize specified in the constructor.
</param>
<summary>
Load more items asynchronously.
Controls which support incremental loading on such as GridView on Windows 8
call this method automatically.
In other cases you should call this method yourself.
</summary>
<returns>The result of loading the items.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="LoadMoreItemsAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task&lt;int&gt; LoadMoreItemsAsync (System.Threading.CancellationToken token, int count = 0);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task`1&lt;int32&gt; LoadMoreItemsAsync(valuetype System.Threading.CancellationToken token, int32 count) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.LoadMoreItemsAsync(System.Threading.CancellationToken,System.Int32)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2/&lt;LoadMoreItemsAsync&gt;d__32))</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task&lt;System.Int32&gt;</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Threading.CancellationToken" />
<Parameter Name="count" Type="System.Int32" />
</Parameters>
<Docs>
<param name="token">
The cancellation token to be used to cancel the task.
</param>
<param name="count">
The number of items to load.
This parameter overrides the pageSize specified in the constructor.
</param>
<summary>
Load more items asynchronously.
Controls which support incremental loading on such as GridView on Windows 8
call this method automatically.
In other cases you should call this method yourself.
</summary>
<returns>The result of loading the items.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="NextLink">
<MemberSignature Language="C#" Value="public string NextLink { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string NextLink" />
<MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.NextLink" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the link to next page of result that is returned in response headers.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="OnPropertyChanged">
<MemberSignature Language="C#" Value="protected virtual void OnPropertyChanged (string propertyName = null);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnPropertyChanged(string propertyName) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.OnPropertyChanged(System.String)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="propertyName" Type="System.String">
<Attributes>
<Attribute>
<AttributeName>System.Runtime.CompilerServices.CallerMemberName</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="propertyName">
The name of the property that has changed.
</param>
<summary>
Invokes the PropertyChanged event for the <paramref name="propertyName" /> property.
Provides a way for subclasses to override the event invocation behavior.
</summary>
<remarks>
The CallerMemberName attribute will supply the value if no explicit value is provided.
For more info see http://msdn.microsoft.com/en-us/library/hh534540.aspx
We still need the null check, because you can still pass null as an explicit parameter.
</remarks>
</Docs>
</Member>
<Member MemberName="PageSize">
<MemberSignature Language="C#" Value="public int PageSize { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 PageSize" />
<MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.PageSize" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>
The page size specified in the constructor.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PrepareDataForCollection">
<MemberSignature Language="C#" Value="public virtual System.Collections.Generic.IEnumerable&lt;TCollection&gt; PrepareDataForCollection (System.Collections.Generic.IEnumerable&lt;TTable&gt; items);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerable`1&lt;!TCollection&gt; PrepareDataForCollection(class System.Collections.Generic.IEnumerable`1&lt;!TTable&gt; items) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.PrepareDataForCollection(System.Collections.Generic.IEnumerable{`0})" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable&lt;TCollection&gt;</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="items" Type="System.Collections.Generic.IEnumerable&lt;TTable&gt;" />
</Parameters>
<Docs>
<param name="items">The items.</param>
<summary>
Transforms the data from the query into data for the collection
using the provided selector function.
</summary>
<returns>The transformed data.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PrepareDataForCollection">
<MemberSignature Language="C#" Value="public TCollection PrepareDataForCollection (TTable item);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance !TCollection PrepareDataForCollection(!TTable item) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.PrepareDataForCollection(`0)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>TCollection</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="TTable" />
</Parameters>
<Docs>
<param name="item">The item.</param>
<summary>
Transforms one item into an item for the collection
using the provided selector function.
</summary>
<returns>The transformed item.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ProcessQueryAsync">
<MemberSignature Language="C#" Value="protected virtual System.Threading.Tasks.Task&lt;int&gt; ProcessQueryAsync (System.Threading.CancellationToken token, Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt; query);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance class System.Threading.Tasks.Task`1&lt;int32&gt; ProcessQueryAsync(valuetype System.Threading.CancellationToken token, class Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery`1&lt;!TTable&gt; query) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.ProcessQueryAsync(System.Threading.CancellationToken,Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery{`0})" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Runtime.CompilerServices.AsyncStateMachine(typeof(Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2/&lt;ProcessQueryAsync&gt;d__18))</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task&lt;System.Int32&gt;</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Threading.CancellationToken" />
<Parameter Name="query" Type="Microsoft.WindowsAzure.MobileServices.IMobileServiceTableQuery&lt;TTable&gt;" />
</Parameters>
<Docs>
<param name="token">A token to cancel the operation.</param>
<param name="query">The query to evaluate.</param>
<summary>
Evaluates the query and adds the result to the collection.
</summary>
<returns>A task representing the ongoing operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="selectorFunction">
<MemberSignature Language="C#" Value="protected Func&lt;System.Collections.Generic.IEnumerable&lt;TTable&gt;,System.Collections.Generic.IEnumerable&lt;TCollection&gt;&gt; selectorFunction;" />
<MemberSignature Language="ILAsm" Value=".field family class System.Func`2&lt;class System.Collections.Generic.IEnumerable`1&lt;!TTable&gt;, class System.Collections.Generic.IEnumerable`1&lt;!TCollection&gt;&gt; selectorFunction" />
<MemberSignature Language="DocId" Value="F:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.selectorFunction" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Func&lt;System.Collections.Generic.IEnumerable&lt;TTable&gt;,System.Collections.Generic.IEnumerable&lt;TCollection&gt;&gt;</ReturnType>
</ReturnValue>
<Docs>
<summary>
A selector function which will be appied to the data when it comes back from the server.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TotalCount">
<MemberSignature Language="C#" Value="public long TotalCount { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 TotalCount" />
<MemberSignature Language="DocId" Value="P:Microsoft.WindowsAzure.MobileServices.MobileServiceCollection`2.TotalCount" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyName>Microsoft.Azure.Mobile.Client</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the total count for all the records that would have been
returned ignoring any take paging/limit clause specified by client
or server.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>