Determines whether the type mapping definition should be loaded from a given type. Determines whether the type mapping definition should be loaded from a given type.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Overrides NotOverridable Function ShouldLoadFromType( _
   ByVal  As Type _
) As Boolean
             
        
            
            'Usage
 
Dim instance As UATypeMappingDefinition
Dim type As Type
Dim value As Boolean
 
value = instance.ShouldLoadFromType(type)
             
        
            
            public override bool ShouldLoadFromType( 
   Type 
)
             
        
            
            public:
bool ShouldLoadFromType( 
   Type^ 
) override 
             
        
             
        
            Parameters
- type
 
- The type candidate.The type candidate.
 
            
            Return Value
true if the definition should be loaded from a given type; false otherwise.true if the definition should be loaded from a given type; false otherwise.
 
            
            
            
            
            
            
            
            
            
            Requirements
 
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also