NHibernate.Lob.External.ExternalBlob.ExternalBlob C# (CSharp) Method

ExternalBlob() public method

public ExternalBlob ( IExternalBlobConnection connection, byte identifier ) : Calyptus.Lob
connection IExternalBlobConnection
identifier byte
return Calyptus.Lob
		public ExternalBlob(IExternalBlobConnection connection, byte[] identifier)
		{
			if (connection == null) throw new ArgumentNullException("connection");
			if (identifier == null) throw new ArgumentNullException("identifier");
			this.connection = connection;
			this.identifier = identifier;
		}

Same methods

ExternalBlob::ExternalBlob ( IExternalBlobConnection connection, byte identifier, IStreamCompressor compression ) : Calyptus.Lob