MobileServiceCollectionView<T>.Remove Method

Removes the first occurence of the specified item from the list.

Namespace:  Microsoft.WindowsAzure.MobileServices
Assembly:  Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)

Syntax

'Declaration
Public Function Remove ( _
    item As T _
) As Boolean
'Usage
Dim instance As MobileServiceCollectionView 
Dim item As T
Dim returnValue As Boolean 

returnValue = instance.Remove(item)
public bool Remove(
    T item
)
public:
bool Remove(
    T item
)
member Remove : 
        item:'T -> bool
public function Remove(
    item : T
) : boolean

Parameters

  • item
    Type: T
    The item to remove.

Return Value

Type: System.Boolean
True if removed, false otherwise.

See Also

Reference

MobileServiceCollectionView<T> Class

Microsoft.WindowsAzure.MobileServices Namespace