GetAll Method (FileType)
- Last UpdatedNov 06, 2025
- 2 minute read
'Declaration
Public Shared Function GetAll( _
ByVal fileExt As String, _
ByVal fileDesc As String, _
ByVal lastEditBy As String, _
ByVal lastEditAt As Nullable(Of Date) _
) As DataSet
public static DataSet GetAll(
string fileExt,
string fileDesc,
string lastEditBy,
Nullable<DateTime> lastEditAt
)
Parameters
- fileExt
- Optional filter parameter. Holds a file extension, including the leading period.
- fileDesc
- Optional filter parameter. Holds a custom description for a file type.
- lastEditBy
- Optional filter parameter. Holds the ID of a user who created or last updated a file type record.
- lastEditAt
- Optional filter parameter. Holds the date and time when a file type record was created or last updated.
Return Value
Returns a DataSet that contains all the records in the File_Type table that satisfy the specified filters. If no matching records are found, an empty DataSet is returned.
The columns of the returned DataSet are described below.
|
Column Name |
Description |
|---|---|
|
file_ext |
A string that is the file extension. |
|
file_desc |
A string that is the custom description for a file of this type. |
|
edit_level |
An integer that is the user level needed to edit a file of this type. |
|
view_level |
An integer that is the user level needed to view a file of this type |
|
print_level |
An integer that is the user level needed to print a file of this type |
|
edit_args |
A string that is command line arguments for editing a file of this type. |
|
view_args |
A string that is command line arguments for viewing a file of this type. |
|
print_args |
A string that is command line arguments for printing a file of this type. |
|
last_edit_comment |
A string that contains comments about why the record was created or updated. |
|
last_edit_by |
A string that is the ID of the user who added or last updated this record. |
|
last_edit_at |
A date/time that indicates when the record was added or last updated. |