Gets the information of the specified uploader.

Namespace: RTE
Assembly: RichTextEditor (in RichTextEditor.dll) Version: 8.0.0.0 (8.0.0.0)

Syntax

C#
public abstract bool GetInfo(
	Guid guid,
	out string filename,
	out int filesize,
	out bool persist
)
Visual Basic
Public MustOverride Function GetInfo ( _
	guid As Guid, _
	<OutAttribute> ByRef filename As String, _
	<OutAttribute> ByRef filesize As Integer, _
	<OutAttribute> ByRef persist As Boolean _
) As Boolean
Visual C++
public:
virtual bool GetInfo(
	Guid guid, 
	[OutAttribute] String^% filename, 
	[OutAttribute] int% filesize, 
	[OutAttribute] bool% persist
) abstract

Parameters

guid
Type: System..::..Guid
The GUID.
filename
Type: System..::..String%
The filename.
filesize
Type: System..::..Int32%
The filesize.
persist
Type: System..::..Boolean%
if set to true [persist].

Return Value

[Missing <returns> documentation for "M:RTE.UploaderProvider.GetInfo(System.Guid,System.String@,System.Int32@,System.Boolean@)"]

See Also