Dynamicweb.eCommerce.Products Namespace : ProductFieldCollection Class |
'Declaration
<SerializableAttribute()> Public Class ProductFieldCollection Inherits System.Collections.ObjectModel.Collection(Of ProductField)
[SerializableAttribute()] public class ProductFieldCollection : System.Collections.ObjectModel.Collection<ProductField>
class MyPage : System.Web.UI.Page { private bool FieldInOwnerTable(string checkName, string checkId) { bool returnBool = false; ProductFieldCollection pf = ProductField.FindProductFieldsBySystemName(checkName, checkId); if (pf.Count > 0) { returnBool = true; } return returnBool; } }
System.Object
System.Collections.ObjectModel.Collection<T>
Dynamicweb.eCommerce.Products.ProductFieldCollection
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2