< Summary

Class:SharpHoundCommonLib.LDAPQueryParams
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\LDAPQueryParams.cs
Covered lines:1
Uncovered lines:3
Coverable lines:4
Total lines:14
Line coverage:25% (1 of 4)
Covered branches:0
Total branches:0

File(s)

D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\LDAPQueryParams.cs

#LineLine coverage
 1using System.DirectoryServices.Protocols;
 2using SharpHoundCommonLib.Exceptions;
 3
 4namespace SharpHoundCommonLib
 5{
 6    internal class LDAPQueryParams
 7    {
 08        public LdapConnection Connection { get; set; }
 09        public SearchRequest SearchRequest { get; set; }
 010        public PageResultRequestControl PageControl { get; set; }
 1711        public LDAPQueryException Exception { get; set; }
 12    }
 13}
 14