xamarin-macios/src/WebKit/DomHelpers.cs

15 строки
483 B
C#
Исходник Обычный вид История

2016-04-21 15:30:02 +03:00
using System;
using ObjCRuntime;
using Foundation;
2016-04-21 15:30:02 +03:00
namespace WebKit {
2016-04-21 15:30:02 +03:00
public partial class DomHtmlSelectElement {
public DomNode this [string name] { get { return this.NamedItem (name); } }
public DomNode this [uint index] { get { return this.GetItem (index); } }
}
public partial class DomHtmlOptionsCollection {
public DomNode this [string name] { get { return this.NamedItem (name); } }
public DomNode this [uint index] { get { return this.GetItem(index); } }
}
}