Catrobat.IDE.Core.Xml.XmlObjects.Bricks.ControlFlow.XmlBroadcastWaitBrick.LoadFromXml C# (CSharp) Méthode

LoadFromXml() private méthode

private LoadFromXml ( System.Xml.Linq.XElement xRoot ) : void
xRoot System.Xml.Linq.XElement
Résultat void
        internal override void LoadFromXml(XElement xRoot)
        {
            if (xRoot != null && xRoot.Element(XmlConstants.BroadcastMessage) != null)
            {
                BroadcastMessage = xRoot.Element(XmlConstants.BroadcastMessage).Value;
            }
        }