AdcsDbReaderGetView Method
            Gets a database row view based on a current configuration. 
            
Namespace: SysadminsLV.PKI.Management.CertificateServices.DatabaseAssembly: SysadminsLV.PKI.Win (in SysadminsLV.PKI.Win.dll) Version: 4.3.0+a868daf3196ed1ac6592e4f3e5cd2b429fc81eaa
public IEnumerable<AdcsDbRow> GetView(
	int skipRows = 0,
	int takeRows = 2147483647
)
Public Function GetView ( 
	Optional skipRows As Integer = 0,
	Optional takeRows As Integer = 2147483647
) As IEnumerable(Of AdcsDbRow)
public:
IEnumerable<AdcsDbRow^>^ GetView(
	int skipRows = 0, 
	int takeRows = 2147483647
)
member GetView : 
        ?skipRows : int * 
        ?takeRows : int 
(* Defaults:
        let _skipRows = defaultArg skipRows 0
        let _takeRows = defaultArg takeRows 2147483647
*)
-> IEnumerable<AdcsDbRow> 
- skipRows  Int32  (Optional)
- Number of rows to skip. Default is 0.
- takeRows  Int32  (Optional)
- Number of rows to fetch. Default is unlimited.
IEnumerableAdcsDbRowDatabase row view enumerator.
 
            After calling this method, CA database reader configuration cannot be altered. That is, no columns
            or query filters can be added. In order to change reader configuration, a new instance of
            
AdcsDbReader class must be created.
            
This method supports 
 statement and returns row as quickly as
            they are retrieved by a reader.