ABB.Swum.IdContext.IdContext C# (CSharp) Method

IdContext() protected method

Creates a new IdContext.
protected IdContext ( string idType, bool idTypeIsPrimitive, string declaringClass ) : System
idType string The type of the identifier.
idTypeIsPrimitive bool Whether the type of the identifier is a primitive data type.
declaringClass string The class that the identifier is part of.
return System
        protected IdContext(string idType, bool idTypeIsPrimitive, string declaringClass)
        {
            this.IdType = idType;
            this.IdTypeIsPrimitive = idTypeIsPrimitive;
            this.DeclaringClass = declaringClass;
        }

Same methods

IdContext::IdContext ( ) : System
IdContext