mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-01 21:41:49 +02:00
Renamed ShareCollection to SMBShareCollection
This commit is contained in:
parent
a7af73ae2d
commit
82f308b576
6 changed files with 9 additions and 9 deletions
|
@ -84,7 +84,7 @@ namespace SMBServer
|
|||
authenticationMechanism = new IndependentNTLMAuthenticationProvider(users.GetUserPassword);
|
||||
}
|
||||
|
||||
ShareCollection shares;
|
||||
SMBShareCollection shares;
|
||||
try
|
||||
{
|
||||
shares = ReadShareSettings();
|
||||
|
@ -150,9 +150,9 @@ namespace SMBServer
|
|||
return users;
|
||||
}
|
||||
|
||||
private ShareCollection ReadShareSettings()
|
||||
private SMBShareCollection ReadShareSettings()
|
||||
{
|
||||
ShareCollection shares = new ShareCollection();
|
||||
SMBShareCollection shares = new SMBShareCollection();
|
||||
XmlDocument document = GetSettingsXML();
|
||||
XmlNode sharesNode = document.SelectSingleNode("Settings/Shares");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue