SharpCifs.Smb.SmbTree.Matches C# (CSharp) Method

Matches() private method

private Matches ( string share, string service ) : bool
share string
service string
return bool
		internal virtual bool Matches(string share, string service)
		{
			return Runtime.EqualsIgnoreCase(this.Share, share) && (service == null ||
				 service.StartsWith("??") || Runtime.EqualsIgnoreCase(this.Service, service
				));
		}