< Summary

Class:SharpHoundCommonLib.LdapQuerySetupResult
Assembly:SharpHoundCommonLib
File(s):D:\a\SharpHoundCommon\SharpHoundCommon\src\CommonLib\LdapQuerySetupResult.cs
Covered lines:2
Uncovered lines:3
Coverable lines:5
Total lines:12
Line coverage:40% (2 of 5)
Covered branches:0
Total branches:0

File(s)

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

#LineLine coverage
 1using System.DirectoryServices;
 2using System.DirectoryServices.Protocols;
 3
 4namespace SharpHoundCommonLib {
 5    public class LdapQuerySetupResult {
 06        public LdapConnectionWrapper ConnectionWrapper { get; set; }
 07        public SearchRequest SearchRequest { get; set; }
 08        public string Server { get; set; }
 29        public bool Success { get; set; }
 210        public string Message { get; set; }
 11    }
 12}