-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
ObjectListCommandEventHandler.xml
45 lines (43 loc) · 3.76 KB
/
ObjectListCommandEventHandler.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Type Name="ObjectListCommandEventHandler" FullName="System.Web.UI.MobileControls.ObjectListCommandEventHandler">
<TypeSignature Language="C#" Value="public delegate void ObjectListCommandEventHandler(object sender, ObjectListCommandEventArgs e);" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed ObjectListCommandEventHandler extends System.MulticastDelegate" />
<TypeSignature Language="DocId" Value="T:System.Web.UI.MobileControls.ObjectListCommandEventHandler" />
<TypeSignature Language="VB.NET" Value="Public Delegate Sub ObjectListCommandEventHandler(sender As Object, e As ObjectListCommandEventArgs)" />
<TypeSignature Language="F#" Value="type ObjectListCommandEventHandler = delegate of obj * ObjectListCommandEventArgs -> unit" />
<TypeSignature Language="C++ CLI" Value="public delegate void ObjectListCommandEventHandler(System::Object ^ sender, ObjectListCommandEventArgs ^ e);" />
<AssemblyInfo>
<AssemblyName>System.Web.Mobile</AssemblyName>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Delegate</BaseTypeName>
</Base>
<Attributes>
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1">
<AttributeName Language="C#">[System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="sender" Type="System.Object" />
<Parameter Name="e" Type="System.Web.UI.MobileControls.ObjectListCommandEventArgs" />
</Parameters>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Docs>
<param name="sender">The source of the event, an <see cref="T:System.Web.UI.MobileControls.ObjectList" />.</param>
<param name="e">An <see cref="T:System.Web.UI.MobileControls.ObjectListCommandEventArgs" /> object that contains the event data.</param>
<summary>Represents the method that will handle the <see cref="E:System.Web.UI.MobileControls.ObjectList.ItemCommand" /> event of an <see cref="T:System.Web.UI.MobileControls.ObjectList" />. For information about how to develop ASP.NET mobile applications, see <see href="https://learn.microsoft.com/aspnet/mobile/overview">Mobile Apps & Sites with ASP.NET</see>.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
When you create an <xref:System.Web.UI.MobileControls.ObjectListCommandEventHandler> delegate for an <xref:System.Web.UI.MobileControls.ObjectList> you identify the method that will handle the event. The <xref:System.Web.UI.MobileControls.ObjectList> notifies the handler when an item event is generated. To associate the event with your event handler, add an instance of the delegate to the event. Unless you remove the delegate, the event handler is called whenever the event occurs.
]]></format>
</remarks>
<altmember cref="T:System.Web.UI.MobileControls.ObjectList" />
<related type="Article" href="https://learn.microsoft.com/previous-versions/dotnet/netframework-3.0/d7hb3s0f(v=vs.85)">Introduction to the ObjectList Control</related>
</Docs>
</Type>