Exemple #1
0
        public ComponentContainerData(ComponentContainerProperties properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
        }
Exemple #2
0
        internal static ComponentContainerData DeserializeComponentContainerData(JsonElement element)
        {
            ComponentContainerProperties properties = default;
            ResourceIdentifier           id         = default;
            string       name       = default;
            ResourceType type       = default;
            SystemData   systemData = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("properties"))
                {
                    properties = ComponentContainerProperties.DeserializeComponentContainerProperties(property.Value);
                    continue;
                }
                if (property.NameEquals("id"))
                {
                    id = new ResourceIdentifier(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("name"))
                {
                    name = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("type"))
                {
                    type = new ResourceType(property.Value.GetString());
                    continue;
                }
                if (property.NameEquals("systemData"))
                {
                    systemData = JsonSerializer.Deserialize <SystemData>(property.Value.ToString());
                    continue;
                }
            }
            return(new ComponentContainerData(id, name, type, systemData, properties));
        }
Exemple #3
0
 internal ComponentContainerData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, ComponentContainerProperties properties) : base(id, name, resourceType, systemData)
 {
     Properties = properties;
 }