Method | Description | |
---|---|---|
IsNullOrEmptyCredential ( string userName, string password ) : bool |
Function to validate user credentials
|
|
ReadFromExcel ( string filePath, string sheetName ) : string>.Dictionary |
This function reads Excel file and returns dictionary
|
|
ReadSheet ( string filePath, string sheetName ) : Collection |
Function is used to return all the values that are read from Sheet
|
Method | Description | |
---|---|---|
ReadRow ( Row row, DocumentFormat.OpenXml.Packaging.WorkbookPart workbookPart ) : Collection |
Function is used to read row values for the provided excel sheet
|
public static IsNullOrEmptyCredential ( string userName, string password ) : bool | ||
userName | string | User name to validate |
password | string | Password to validate |
return | bool |
public static ReadFromExcel ( string filePath, string sheetName ) : string>.Dictionary |
||
filePath | string | Full path to Excel file |
sheetName | string | Sheet name containing configurations |
return | string>.Dictionary |
public static ReadSheet ( string filePath, string sheetName ) : Collection |
||
filePath | string | File path of the Excel |
sheetName | string | Sheet to be read from Excel |
return | Collection |