OpenFrame::Argument::Blob - handling for filehandle-style data in network requests


OpenFrame documentation  | view source Contained in the OpenFrame distribution.

Index


NAME

Top

OpenFrame::Argument::Blob - handling for filehandle-style data in network requests

SYNOPSIS

Top

  use OpenFrame::Argument::Blob;

  my $blob = OpenFrame::Argument::Blob->new();

  $blob->filename( 'somefilename.dat' );
  $blob->filehandle( $fh );

  my $filename   = $blob->filename; 
  my $filehandle = $blob->filehandle;

DESCRIPTION

Top

OpenFrame::Argument::Blob is a class to support things such as browser-based uploads. It provides a mechanisms to get the filehandle and filename of the uploaded element.

METHODS

Top

filename( [ SCALAR ] )

The filename() method gets/sets the value of the filename attribute of the class. This should return the filename of the uploaded data.

filehandle( [ IO::Handle ] )

The filehandle method gets/sets the value of the filehandle that points to the uploaded data.

INHERITANCE

Top

OpenFrame::Argument::Blob inherits from the OpenFrame::Object class and provides all methods that its super class does.

AUTHOR

Top

James A. Duncan <jduncan@fotango.com>

COPYRIGHT

Top


OpenFrame documentation  | view source Contained in the OpenFrame distribution.