CSharpAnalytics.Protocols.Urchin.CustomVariables.CustomVariable.CustomVariable C# (CSharp) 메소드

CustomVariable() 공개 메소드

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.
리턴 System.Diagnostics
        public CustomVariable(string name, string value)
        {
            this.name = name;
            this.value = value;
        }
CustomVariable