NHibernate.Lob.External.ExternalBlobType.ExtractLobData C# (CSharp) Method

ExtractLobData() protected method

protected ExtractLobData ( object lob, IExternalBlobConnection &connection, byte &identifier ) : bool
lob object
connection IExternalBlobConnection
identifier byte
return bool
		protected override bool ExtractLobData(object lob, out IExternalBlobConnection connection, out byte[] identifier)
		{
			ExternalBlob blob = lob as ExternalBlob;
			if (blob == null)
			{
				connection = null;
				identifier = null;
				return false;
			}
			connection = blob.Connection;
			identifier = blob.Identifier;
			return true;
		}