NHibernate.Lob.External.FileSystemCasConnection.Delete C# (CSharp) Method

Delete() public method

public Delete ( byte contentIdentifier ) : void
contentIdentifier byte
return void
		public override void Delete(byte[] contentIdentifier)
		{
			string path = GetPath(contentIdentifier);
			if (System.IO.File.Exists(path))
				System.IO.File.Delete(path);
			DeleteFolder(contentIdentifier);
		}