NHibernate.Lob.External.FileSystemCasConnection.Delete C# (CSharp) Méthode

Delete() public méthode

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