Remove a card service from service in use list.

Namespace: BasicCard.Framework
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public void RemoveService(
	ICardService service
)
Visual Basic
Public Sub RemoveService ( 
	service As ICardService
)
Visual C++
public:
void RemoveService(
	ICardService^ service
)
F#
member RemoveService : 
        service : ICardService -> unit 

Parameters

service
Type: BasicCard.GenericCards..::..ICardService
Card service to remove.

Remarks

By default all services requested by WaitForCardService(ICardService, TimeSpan) are remembered in this list. If the service is disposed the service can be removed from this list by using this function call. Otherwise the service is disposed automatically when the observer is stopped.

See Also