コード例 #1
0
ファイル: WebViewResult.cs プロジェクト: Redth/monodevelop-1
        public override AppResult Property(string propertyName, object value)
        {
            var attributeValue = node.GetAttribute(propertyName);

            if (string.IsNullOrEmpty(attributeValue) || attributeValue != value.ToString())
            {
                return(null);
            }

            return(this);
        }