erminas.SmartAPI.CMS.XmlReadWriteWrapper.GetGuid C# (CSharp) Method

GetGuid() public method

public GetGuid ( string attributeName ) : System.Guid
attributeName string
return System.Guid
        public Guid GetGuid(string attributeName)
        {
            var strValue = GetAttributeValue(attributeName);
            return Guid.Parse(strValue);
        }