AccidentalFish.ApplicationSupport.Core.Configuration.ApplicationStorageAccount.ApplicationStorageAccount C# (CSharp) Метод

ApplicationStorageAccount() публичный Метод

Constructor
public ApplicationStorageAccount ( System.Xml.Linq.XElement element ) : System.Collections.Generic
element System.Xml.Linq.XElement XML element to construct the storage account from
Результат System.Collections.Generic
        public ApplicationStorageAccount(XElement element) : this()
        {
            Fqn = element.Element("fqn").Value;
            ConnectionString = element.Element("connection-string").Value;
            foreach (XElement cr in element.Elements("cors-rule"))
            {
                CorsRules.Add(new ApplicationCorsRule(cr));
            }
        }

Same methods

ApplicationStorageAccount::ApplicationStorageAccount ( ) : System.Collections.Generic
ApplicationStorageAccount