Returns a list of all Protocol Records specified in range start to end. i.e., startIndex=0,endIndex=4, will return upto first 5 records. i.e., startIndex=5,endIndex=9, will return upto 6th through 10th records.

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public static DataTable GetAllProtocols(
	int startIndex,
	int endIndex,
	string sortColumn,
	string sortExpression,
	Nullable<int> userId
)
Visual Basic
Public Shared Function GetAllProtocols ( 
	startIndex As Integer,
	endIndex As Integer,
	sortColumn As String,
	sortExpression As String,
	userId As Nullable(Of Integer)
) As DataTable
Visual C++
public:
static DataTable^ GetAllProtocols(
	int startIndex, 
	int endIndex, 
	String^ sortColumn, 
	String^ sortExpression, 
	Nullable<int> userId
)

Parameters

startIndex
Type: System..::..Int32

[Missing <param name="startIndex"/> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

endIndex
Type: System..::..Int32

[Missing <param name="endIndex"/> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

sortColumn
Type: System..::..String

[Missing <param name="sortColumn"/> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

sortExpression
Type: System..::..String

[Missing <param name="sortExpression"/> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

userId
Type: System..::..Nullable<(Of <(<'Int32>)>)>

[Missing <param name="userId"/> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

Return Value

Type: DataTable

[Missing <returns> documentation for "M:Caisis.DataAccess.ProtocolMgmtDa.GetAllProtocols(System.Int32,System.Int32,System.String,System.String,System.Nullable{System.Int32})"]

See Also