ThreadSafeReadOnlyObservableCollection<T>.Remove Method (T)
Removes the specified item from the collection.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Syntax
public bool Remove(
T item
)
public:
virtual bool Remove(
T item
) sealed
Public Function Remove (
item As T
) As Boolean
Parameters
item
Type: TThe item to be removed.
Return Value
Type: System.Boolean
Always returns false.
Implements
Exceptions
Exception | Condition |
---|---|
NotSupportedException | This method always throws this exception. |
See Also
ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top