Axiom.RenderSystems.OpenGLES.IPhone.IPhoneWindow.this C# (CSharp) Метод

this() публичный Метод

public this ( string attribute ) : object
attribute string
Результат object
		public override object this[ string attribute ]
		{
			get
			{
				switch ( attribute.ToLower() )
				{
					case "glcontext":
						return _glContext;
					case "window":
						return _window;
					case "nativewindow":
						return _window;
					default:
						return null;
				}
			}
		}