CSharpAnalytics.Protocols.Urchin.CustomVariables.CustomVariable.CustomVariable C# (CSharp) Method

CustomVariable() public method

Create a new evaluated custom variable with a given name and value evaluator.
public CustomVariable ( string name, string value ) : System.Diagnostics
name string Name of this custom variable to be assigned to the name property.
value string Value of this custom variable to be assigned to the Value property.
return System.Diagnostics
        public CustomVariable(string name, string value)
        {
            this.name = name;
            this.value = value;
        }
CustomVariable