Hi,
you are looking for ServerSession.Current property.
var session = ServerSession.Current;
In the 'Delete' method.
protected override NodeBase Delete(NodeBase node)
{
var myContext = ServerSession.Current.Context;
_fileSystemNodes.Remove(node.Path);
return node;
}
Remark for other visitors of the Rebex forum.
Please be aware that ServerSession.Current can be null when the FileSystemProvider is running outside the FileServer.