RegisterTypes() 공개 정적인 메소드

Registers an entire array of simplTypes
public static RegisterTypes ( SimplType simplTypes ) : bool
simplTypes SimplType Simpl Types to register
리턴 bool
예제 #1
0
        static FundamentalTypes()
        {
            TypeRegistry.RegisterTypes(ScalarTypes.ToArray());
            TypeRegistry.RegisterTypes(collectionTypes.ToArray());

            TypeRegistry.SetDefaultCollectionType(listType);
            TypeRegistry.SetDefaultMapType(mapType);
        }
예제 #2
0
 static PlatformSpecificTypesDotNet()
 {
     TypeRegistry.RegisterTypes(ScalarTypes.ToArray());
 }
예제 #3
0
 static PlatformSpecificTypesWindowsStoreApps()
 {
     TypeRegistry.RegisterTypes(ScalarTypes.ToArray());
 }