MemBus.ShapeProvider.ShapeProvider C# (CSharp) 메소드

ShapeProvider() 공개 메소드

public ShapeProvider ( bool>.Func match, IServices services ) : System
match bool>.Func
services IServices
리턴 System
        public ShapeProvider(Func<MessageInfo,bool> match, IServices services)
        {
            if (match == null)
              throw new ArgumentNullException("match");
            _match = match;
            _services = services;
        }