PageTypeBuilder.Synchronization.PageDefinitionSynchronization.PageDefinitionTypeMapper.GetDefaultPropertyType C# (CSharp) Method

GetDefaultPropertyType() public method

public GetDefaultPropertyType ( Type propertyType ) : Type
propertyType System.Type
return System.Type
        public virtual Type GetDefaultPropertyType(Type propertyType)
        {
            if (defaultPropertyTypeMappings.ContainsKey(propertyType))
                return defaultPropertyTypeMappings[propertyType];

            return null;
        }
    }