ServiceStack.Redis.RedisNativeClient.SInterStore C# (CSharp) Method

SInterStore() public method

public SInterStore ( string intoSetId ) : void
intoSetId string
return void
        public void SInterStore(string intoSetId, params string[] setIds)
        {
            var setIdsList = new List<string>(setIds);
            setIdsList.Insert(0, intoSetId);

            var cmdWithArgs = MergeCommandWithArgs(Commands.SInterStore, setIdsList.ToArray());
            SendExpectSuccess(cmdWithArgs);
        }
RedisNativeClient