GetDocumentTypes(String,String,Object,Object,Object,Object,Object,Object,Object,Object) Method
- Last UpdatedNov 06, 2025
- 2 minute read
Beginning with MES version 6.1, the GetDocumentTypes() method is obsolete. Document types have been removed from MES. The method now returns a null instead of a Dataset.
'Declaration
Public Overloads Shared Function GetDocumentTypes( _
ByVal docType As String, _
ByVal description As String, _
ByVal viewer As Object, _
ByVal editor As Object, _
ByVal editLevel As Object, _
ByVal download As Object, _
ByVal downloadLevel As Object, _
ByVal viewLevel As Object, _
ByVal printLevel As Object, _
ByVal url As Object _
) As DataSet
public static DataSet GetDocumentTypes(
string docType,
string description,
object viewer,
object editor,
object editLevel,
object download,
object downloadLevel,
object viewLevel,
object printLevel,
object url
)
Parameters
- docType
- Optional. Holds the document type by which to filter the results. Pass null for no filter.
- description
- Optional. Holds the description by which to filter the results. Pass null for no filter.
- viewer
- Optional. Holds the viewer type by which to filter the results. Pass null for no filter.
- editor
- Optional. Holds the editor by which to filter the results. Pass null for no filter.
- editLevel
- Optional. Holds the edit level by which to filter the results. Pass null for no filter.
- download
- Optional. Holds the download by which to filter the results. Pass null for no filter.
- downloadLevel
- Optional. Holds the download level by which to filter the results. Pass null for no filter.
- viewLevel
- Optional. Holds the view level by which to filter the results. Pass null for no filter.
- printLevel
- Optional. Holds the print level by which to filter the results. Pass null for no filter.
- url
- Optional. Holds the URL by which to filter the results. Pass null for no filter.
Return Value
Returns null.