Files
linux-packaging-mono/mcs/class/referencesource/System.Web/UI/WebParts/IWebPartField.cs

17 lines
544 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="IWebPartField.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls.WebParts {
using System;
using System.ComponentModel;
public interface IWebPartField {
PropertyDescriptor Schema { get; }
void GetFieldValue(FieldCallback callback);
}
}