AttributeChangeExtentionsGetValueDeletesT Method |
Gets the value deletes present in the attribute change
Namespace: Lithnet.MetadirectoryServicesAssembly: Lithnet.MetadirectoryServices (in Lithnet.MetadirectoryServices.dll) Version: 1.0.6017.24765
Syntax public static IList<T> GetValueDeletes<T>(
this AttributeChange change
)
<ExtensionAttribute>
Public Shared Function GetValueDeletes(Of T) (
change As AttributeChange
) As IList(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static IList<T>^ GetValueDeletes(
AttributeChange^ change
)
Parameters
- change
- Type: AttributeChange
The attribute change
Type Parameters
- T
- The type of data in the attribute
Return Value
Type:
IListTA list values present in the attribute change, or an empty list if there were no value deletes present
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
AttributeChange. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also