SharpCifs.Smb.SmbTree.Matches C# (CSharp) 메소드

Matches() 개인적인 메소드

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