MemBus.ShapeProvider.ShapeProvider C# (CSharp) Method

ShapeProvider() public method

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