AccidentalFish.ApplicationSupport.Powershell.NewApplicationResources.GetEntityProperty C# (CSharp) Метод

GetEntityProperty() приватный Метод

private GetEntityProperty ( System.Xml.Linq.XElement xProperty ) : Microsoft.WindowsAzure.Storage.Table.EntityProperty
xProperty System.Xml.Linq.XElement
Результат Microsoft.WindowsAzure.Storage.Table.EntityProperty
        private EntityProperty GetEntityProperty(XElement xProperty)
        {
            XAttribute type = xProperty.Attribute("type");
            if (type != null)
            {
                return GetEntityPropertyForType(type.Value, xProperty.Value);
            }
            else
            {
                return GetEntityPropertyByInference(xProperty.Value);
            }
        }