Beispiel #1
0
        public ISPx Create(
            VariableCollection <IpIndexElement, IaIndexElement> value)
        {
            ISPx variable = null;

            try
            {
                variable = new SPx(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(variable);
        }
Beispiel #2
0
        public ISPx Create(
            ImmutableList <ISPxResultElement> value)
        {
            ISPx result = null;

            try
            {
                result = new SPx(
                    value);
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(result);
        }