Ecologylab.BigSemantics.MetaMetadataNS.MetaMetadataFieldTranslationScope.Get C# (CSharp) Метод

Get() публичный статический Метод

public static Get ( ) : SimplTypesScope
Результат Simpl.Serialization.SimplTypesScope
        public static SimplTypesScope Get()
        {
            return SimplTypesScope.Get(NAME, translations);
        }

Usage Example

        public static SimplTypesScope Get()
        {
            SimplTypesScope semanticActionScope = SemanticOperationTranslationScope.Get();
            SimplTypesScope conditionScope      = SimplTypesScope.Get("condition_scope", conditionClasses);
            SimplTypesScope nestedFieldTypes    = NestedMetaMetadataFieldTypesScope.Get();
            SimplTypesScope mmdScope            = SimplTypesScope.Get("meta_metadata", MetaMetadataFieldTranslationScope.Get(),
                                                                      translations);

            mmdScope.AddTranslations(semanticActionScope);
            mmdScope.AddTranslations(conditionScope);
            mmdScope.AddTranslations(nestedFieldTypes);

            return(mmdScope);
        }
MetaMetadataFieldTranslationScope