Composite.Data.DynamicTypes.DataTypeDescriptor.DataTypeDescriptor C# (CSharp) Method

DataTypeDescriptor() public method

Instantiates an instance of DataTypeDescriptor.
public DataTypeDescriptor ( System.Guid dataTypeId, string dataTypeNamespace, string dataTypeName, bool isCodeGenerated ) : System
dataTypeId System.Guid The permanent Guid which should represent this data type.
dataTypeNamespace string Namespace of the type.
dataTypeName string Name of the type.
isCodeGenerated bool True if this type is dynamically compiled.
return System
        public DataTypeDescriptor(Guid dataTypeId, string dataTypeNamespace, string dataTypeName, bool isCodeGenerated)
            : this()
        {
            this.DataTypeId = dataTypeId;
            this.Namespace = dataTypeNamespace;
            this.Name = dataTypeName;
            this.IsCodeGenerated = isCodeGenerated;
        }

Same methods

DataTypeDescriptor::DataTypeDescriptor ( ) : System
DataTypeDescriptor::DataTypeDescriptor ( System.Guid dataTypeId, string dataTypeNamespace, string dataTypeName, string typeManagerTypeName ) : System
DataTypeDescriptor::DataTypeDescriptor ( System.Guid dataTypeId, string dataTypeNamespace, string dataTypeName, string typeManagerTypeName, bool isCodeGenerated ) : System