MobileListItem.Implicit(String to MobileListItem) Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides implicit conversion from a String to a MobileListItem. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
public:
static operator System::Web::UI::MobileControls::MobileListItem ^(System::String ^ s);
public static implicit operator System.Web.UI.MobileControls.MobileListItem (string s);
static member op_Implicit : string -> System.Web.UI.MobileControls.MobileListItem
Public Shared Widening Operator CType (s As String) As MobileListItem
Parameters
- s
- String
The string to convert.
Returns
A MobileListItem with Text set to the specified String.
Examples
The following code example creates multiple MobileListItem objects using implicit conversion from strings, and adds them to a List control.
<%@ Page Language="C#"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
MobileListItem mi;
// Use implicit conversion to create
// new MobileListItem objects from strings
mi = "One";
List1.Items.Add(mi);
mi = "Two";
List1.Items.Add(mi);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:List ID="List1" Runat="server">
</mobile:List>
</mobile:form>
</body>
</html>
<%@ Page Language="VB"
Inherits="System.Web.UI.MobileControls.MobilePage" %>
<%@ Register TagPrefix="mobile"
Namespace="System.Web.UI.MobileControls"
Assembly="System.Web.Mobile" %>
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, _
ByVal e As System.EventArgs)
Dim mi As MobileListItem
' Use implicit conversion to create
' new MobileListItem objects from strings
mi = "One"
List1.Items.Add(mi)
mi = "Two"
List1.Items.Add(mi)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<mobile:form id="form1" runat="server">
<mobile:List ID="List1" Runat="server" />
</mobile:form>
</body>
</html>
Remarks
The MobileListItem object created by implicit conversion uses the string input as the value of its Text property.