Dev2.Runtime.ServiceModel.WebServices.SetParameters C# (CSharp) Method

SetParameters() static private method

static private SetParameters ( IEnumerable parameters, string s ) : string
parameters IEnumerable
s string
return string
        static string SetParameters(IEnumerable<MethodParameter> parameters, string s)
        {
            return parameters.Aggregate(s ?? "", (current, parameter) => current.Replace("[[" + parameter.Name + "]]", parameter.Value));
        }