Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Removes the specified element from a ReadOnlyObservableSet<T> object.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Protected Function RemoveItem ( _
item As T _
) As Boolean
protected bool RemoveItem(
T item
)
protected:
bool RemoveItem(
T item
)
member RemoveItem :
item:'T -> bool
protected function RemoveItem(
item : T
) : boolean
Parameters
item
Type: TThe element to remove from the set.
Return Value
Type: Boolean
true if the element is successfully found and removed, otherwise false. This method returns false if item is not found in the ReadOnlyObservableSet(T) object.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.