Remove an existing AssetMember from this Asset's member collection.

Namespace: Cartella.Interfaces
Assembly: AssetManagementSystem (in AssetManagementSystem.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
void RemoveMember(
	ref IAssetMember member
)
Visual Basic
Sub RemoveMember ( _
	ByRef member As IAssetMember _
)
Visual C++
void RemoveMember(
	IAssetMember^% member
)

Parameters

member
Type: Cartella.Interfaces..::..IAssetMember%
Member to be removed

Remarks

Members removed will still be around and can be restored. Future updates to the Asset will skip this member for versioning combinations. If a member that is already removed is passed as parameter, nothing will happen.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThrown if a null parameter passed in
System..::..ArgumentExceptionThrown if the current Asset object doesn't have an AssetManager reference
System..::..MemberAccessExceptionThrown if a database procedure not present

See Also