mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-14 19:23:46 +02:00
Client: Mark overloaded Start method as protected internal
This commit is contained in:
parent
6823b43d2e
commit
cfa568b866
2 changed files with 2 additions and 2 deletions
|
@ -88,7 +88,7 @@ namespace SMBLibrary.Client
|
||||||
return Connect(serverAddress, transport, port, forceExtendedSecurity, responseTimeoutInMilliseconds);
|
return Connect(serverAddress, transport, port, forceExtendedSecurity, responseTimeoutInMilliseconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal bool Connect(IPAddress serverAddress, SMBTransportType transport, int port, bool forceExtendedSecurity, int responseTimeoutInMilliseconds)
|
protected internal bool Connect(IPAddress serverAddress, SMBTransportType transport, int port, bool forceExtendedSecurity, int responseTimeoutInMilliseconds)
|
||||||
{
|
{
|
||||||
m_transport = transport;
|
m_transport = transport;
|
||||||
if (!m_isConnected)
|
if (!m_isConnected)
|
||||||
|
|
|
@ -94,7 +94,7 @@ namespace SMBLibrary.Client
|
||||||
return Connect(serverAddress, transport, port, responseTimeoutInMilliseconds);
|
return Connect(serverAddress, transport, port, responseTimeoutInMilliseconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
internal bool Connect(IPAddress serverAddress, SMBTransportType transport, int port, int responseTimeoutInMilliseconds)
|
protected internal bool Connect(IPAddress serverAddress, SMBTransportType transport, int port, int responseTimeoutInMilliseconds)
|
||||||
{
|
{
|
||||||
if (m_serverName == null)
|
if (m_serverName == null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue