 | RedisCacheServiceStop Method |
Indicates the caller wishes to stop the daemon service
Namespace: SanteDB.Caching.RedisAssembly: SanteDB.Caching.Redis (in SanteDB.Caching.Redis.dll) Version: 3.0.2081-alpha+ce906ccc8091ff0a3c40d1fff3e2485e75a86c5b
SyntaxPublic Function Stop As Boolean
public:
virtual bool Stop() sealed
abstract Stop : unit -> bool
override Stop : unit -> bool
Return Value
BooleanTrue if the service was stopped successfully
Implements
IDaemonServiceStop
RemarksImplementers of this method should ensure that they perform any necessary tearing down of the service. It is good practice to
release any connections, dispose of any unmanaged objects, etc. The implementer should raise the Stopping event followed by
Stopped and return true if the stop was successful
See Also