Composite.Data.DynamicTypes.DataTypeDescriptor.DataTypeDescriptor C# (CSharp) Метод

DataTypeDescriptor() публичный Метод

Instantiates an instance of DataTypeDescriptor with a custom Type Manager.
public DataTypeDescriptor ( System.Guid dataTypeId, string dataTypeNamespace, string dataTypeName, string typeManagerTypeName, 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.
typeManagerTypeName string If this data type has a custom type manager
isCodeGenerated bool True if this type is dynamically compiled.
Результат System
        public DataTypeDescriptor(Guid dataTypeId, string dataTypeNamespace, string dataTypeName, string typeManagerTypeName, bool isCodeGenerated)
            : this()
        {
            this.DataTypeId = dataTypeId;
            this.Namespace = dataTypeNamespace;
            this.Name = dataTypeName;
            this.TypeManagerTypeName = typeManagerTypeName;
            this.IsCodeGenerated = isCodeGenerated;
        }

Same methods

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