NHibernate.Lob.External.FileSystemCasConnection.Delete C# (CSharp) 메소드

Delete() 공개 메소드

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