DeploymentStager.DependencyResource.DependencyResource C# (CSharp) Метод

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

public DependencyResource ( System.Xml.Linq.XElement xmlElement, string filepath ) : System
xmlElement System.Xml.Linq.XElement
filepath string
Результат System
        public DependencyResource(XElement xmlElement, string filepath)
        {
            // Load basic resources.
            path = filepath;
            name = (string)xmlElement.Attribute("name");
            location = (string)xmlElement.Attribute("location");
        }
DependencyResource