ImageGear .NET v25.2 - Updated
ImageGear.Windows.Forms Assembly / ImageGear.Windows.Forms Namespace / ImGearRemoteFile Class / Upload Method
Content to upload to the remote resource.




In This Topic
    Upload Method
    In This Topic
    Uploads local content to remote resource.
    Syntax
    'Declaration
     
    Public Sub Upload( _
       ByVal localContent As Stream _
    ) 
    'Usage
     
    Dim instance As ImGearRemoteFile
    Dim localContent As Stream
     
    instance.Upload(localContent)
    public void Upload( 
       Stream localContent
    )
    public: void Upload( 
       Stream* localContent
    ) 
    public:
    void Upload( 
       Stream^ localContent
    ) 

    Parameters

    localContent
    Content to upload to the remote resource.
    Remarks
    It uses its own WebRequest object to do this, so it's not necessary to create one with the CreateRequest method before calling this method.
    See Also