12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031 |
- ### YamlMime:ManagedReference
- items:
- - uid: Mono.Terminal.MainLoop
- commentId: T:Mono.Terminal.MainLoop
- id: MainLoop
- parent: Mono.Terminal
- children:
- - Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
- - Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean})
- - Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean})
- - Mono.Terminal.MainLoop.Driver
- - Mono.Terminal.MainLoop.EventsPending(System.Boolean)
- - Mono.Terminal.MainLoop.Invoke(System.Action)
- - Mono.Terminal.MainLoop.MainIteration
- - Mono.Terminal.MainLoop.RemoveIdle(System.Func{System.Boolean})
- - Mono.Terminal.MainLoop.RemoveTimeout(System.Object)
- - Mono.Terminal.MainLoop.Run
- - Mono.Terminal.MainLoop.Stop
- langs:
- - csharp
- - vb
- name: MainLoop
- nameWithType: MainLoop
- fullName: Mono.Terminal.MainLoop
- type: Class
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: MainLoop
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 327
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nSimple main loop implementation that can be used to monitor\nfile descriptor, run timers and idle handlers.\n"
- remarks: "\nMonitoring of file descriptors is only available on Unix, there\ndoes not seem to be a way of supporting this on Windows.\n"
- example: []
- syntax:
- content: public class MainLoop
- content.vb: Public Class MainLoop
- inheritance:
- - System.Object
- inheritedMembers:
- - System.Object.Equals(System.Object)
- - System.Object.Equals(System.Object,System.Object)
- - System.Object.GetHashCode
- - System.Object.GetType
- - System.Object.MemberwiseClone
- - System.Object.ReferenceEquals(System.Object,System.Object)
- - System.Object.ToString
- modifiers.csharp:
- - public
- - class
- modifiers.vb:
- - Public
- - Class
- - uid: Mono.Terminal.MainLoop.Driver
- commentId: P:Mono.Terminal.MainLoop.Driver
- id: Driver
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: Driver
- nameWithType: MainLoop.Driver
- fullName: Mono.Terminal.MainLoop.Driver
- type: Property
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: Driver
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 342
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nThe current IMainLoopDriver in use.\n"
- example: []
- syntax:
- content: public IMainLoopDriver Driver { get; }
- parameters: []
- return:
- type: Mono.Terminal.IMainLoopDriver
- description: The driver.
- content.vb: Public ReadOnly Property Driver As IMainLoopDriver
- overload: Mono.Terminal.MainLoop.Driver*
- modifiers.csharp:
- - public
- - get
- modifiers.vb:
- - Public
- - ReadOnly
- - uid: Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
- commentId: M:Mono.Terminal.MainLoop.#ctor(Mono.Terminal.IMainLoopDriver)
- id: '#ctor(Mono.Terminal.IMainLoopDriver)'
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: MainLoop(IMainLoopDriver)
- nameWithType: MainLoop.MainLoop(IMainLoopDriver)
- fullName: Mono.Terminal.MainLoop.MainLoop(Mono.Terminal.IMainLoopDriver)
- type: Constructor
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: .ctor
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 348
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nCreates a new Mainloop, to run it you must provide a driver, and choose\none of the implementations UnixMainLoop, NetMainLoop or WindowsMainLoop.\n"
- example: []
- syntax:
- content: public MainLoop(IMainLoopDriver driver)
- parameters:
- - id: driver
- type: Mono.Terminal.IMainLoopDriver
- content.vb: Public Sub New(driver As IMainLoopDriver)
- overload: Mono.Terminal.MainLoop.#ctor*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.Invoke(System.Action)
- commentId: M:Mono.Terminal.MainLoop.Invoke(System.Action)
- id: Invoke(System.Action)
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: Invoke(Action)
- nameWithType: MainLoop.Invoke(Action)
- fullName: Mono.Terminal.MainLoop.Invoke(System.Action)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: Invoke
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 357
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nRuns @action on the thread that is processing events\n"
- example: []
- syntax:
- content: public void Invoke(Action action)
- parameters:
- - id: action
- type: System.Action
- content.vb: Public Sub Invoke(action As Action)
- overload: Mono.Terminal.MainLoop.Invoke*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean})
- commentId: M:Mono.Terminal.MainLoop.AddIdle(System.Func{System.Boolean})
- id: AddIdle(System.Func{System.Boolean})
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: AddIdle(Func<Boolean>)
- nameWithType: MainLoop.AddIdle(Func<Boolean>)
- fullName: Mono.Terminal.MainLoop.AddIdle(System.Func<System.Boolean>)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: AddIdle
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 368
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nExecutes the specified @idleHandler on the idle loop. The return value is a token to remove it.\n"
- example: []
- syntax:
- content: public Func<bool> AddIdle(Func<bool> idleHandler)
- parameters:
- - id: idleHandler
- type: System.Func{System.Boolean}
- return:
- type: System.Func{System.Boolean}
- content.vb: Public Function AddIdle(idleHandler As Func(Of Boolean)) As Func(Of Boolean)
- overload: Mono.Terminal.MainLoop.AddIdle*
- nameWithType.vb: MainLoop.AddIdle(Func(Of Boolean))
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- fullName.vb: Mono.Terminal.MainLoop.AddIdle(System.Func(Of System.Boolean))
- name.vb: AddIdle(Func(Of Boolean))
- - uid: Mono.Terminal.MainLoop.RemoveIdle(System.Func{System.Boolean})
- commentId: M:Mono.Terminal.MainLoop.RemoveIdle(System.Func{System.Boolean})
- id: RemoveIdle(System.Func{System.Boolean})
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: RemoveIdle(Func<Boolean>)
- nameWithType: MainLoop.RemoveIdle(Func<Boolean>)
- fullName: Mono.Terminal.MainLoop.RemoveIdle(System.Func<System.Boolean>)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: RemoveIdle
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 379
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nRemoves the specified idleHandler from processing.\n"
- example: []
- syntax:
- content: public void RemoveIdle(Func<bool> idleHandler)
- parameters:
- - id: idleHandler
- type: System.Func{System.Boolean}
- content.vb: Public Sub RemoveIdle(idleHandler As Func(Of Boolean))
- overload: Mono.Terminal.MainLoop.RemoveIdle*
- nameWithType.vb: MainLoop.RemoveIdle(Func(Of Boolean))
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- fullName.vb: Mono.Terminal.MainLoop.RemoveIdle(System.Func(Of System.Boolean))
- name.vb: RemoveIdle(Func(Of Boolean))
- - uid: Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean})
- commentId: M:Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean})
- id: AddTimeout(System.TimeSpan,System.Func{Mono.Terminal.MainLoop,System.Boolean})
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: AddTimeout(TimeSpan, Func<MainLoop, Boolean>)
- nameWithType: MainLoop.AddTimeout(TimeSpan, Func<MainLoop, Boolean>)
- fullName: Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan, System.Func<Mono.Terminal.MainLoop, System.Boolean>)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: AddTimeout
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 401
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nAdds a timeout to the mainloop.\n"
- remarks: "\nWhen time time specified passes, the callback will be invoked.\nIf the callback returns true, the timeout will be reset, repeating\nthe invocation. If it returns false, the timeout will stop.\n\nThe returned value is a token that can be used to stop the timeout\nby calling RemoveTimeout.\n"
- example: []
- syntax:
- content: public object AddTimeout(TimeSpan time, Func<MainLoop, bool> callback)
- parameters:
- - id: time
- type: System.TimeSpan
- - id: callback
- type: System.Func{Mono.Terminal.MainLoop,System.Boolean}
- return:
- type: System.Object
- content.vb: Public Function AddTimeout(time As TimeSpan, callback As Func(Of MainLoop, Boolean)) As Object
- overload: Mono.Terminal.MainLoop.AddTimeout*
- nameWithType.vb: MainLoop.AddTimeout(TimeSpan, Func(Of MainLoop, Boolean))
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- fullName.vb: Mono.Terminal.MainLoop.AddTimeout(System.TimeSpan, System.Func(Of Mono.Terminal.MainLoop, System.Boolean))
- name.vb: AddTimeout(TimeSpan, Func(Of MainLoop, Boolean))
- - uid: Mono.Terminal.MainLoop.RemoveTimeout(System.Object)
- commentId: M:Mono.Terminal.MainLoop.RemoveTimeout(System.Object)
- id: RemoveTimeout(System.Object)
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: RemoveTimeout(Object)
- nameWithType: MainLoop.RemoveTimeout(Object)
- fullName: Mono.Terminal.MainLoop.RemoveTimeout(System.Object)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: RemoveTimeout
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 419
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nRemoves a previously scheduled timeout\n"
- remarks: "\nThe token parameter is the value returned by AddTimeout.\n"
- example: []
- syntax:
- content: public void RemoveTimeout(object token)
- parameters:
- - id: token
- type: System.Object
- content.vb: Public Sub RemoveTimeout(token As Object)
- overload: Mono.Terminal.MainLoop.RemoveTimeout*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.Stop
- commentId: M:Mono.Terminal.MainLoop.Stop
- id: Stop
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: Stop()
- nameWithType: MainLoop.Stop()
- fullName: Mono.Terminal.MainLoop.Stop()
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: Stop
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 462
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nStops the mainloop.\n"
- example: []
- syntax:
- content: public void Stop()
- content.vb: Public Sub Stop
- overload: Mono.Terminal.MainLoop.Stop*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.EventsPending(System.Boolean)
- commentId: M:Mono.Terminal.MainLoop.EventsPending(System.Boolean)
- id: EventsPending(System.Boolean)
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: EventsPending(Boolean)
- nameWithType: MainLoop.EventsPending(Boolean)
- fullName: Mono.Terminal.MainLoop.EventsPending(System.Boolean)
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: EventsPending
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 476
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nDetermines whether there are pending events to be processed.\n"
- remarks: "\nYou can use this method if you want to probe if events are pending.\nTypically used if you need to flush the input queue while still\nrunning some of your own code in your main thread.\n"
- example: []
- syntax:
- content: public bool EventsPending(bool wait = false)
- parameters:
- - id: wait
- type: System.Boolean
- return:
- type: System.Boolean
- content.vb: Public Function EventsPending(wait As Boolean = False) As Boolean
- overload: Mono.Terminal.MainLoop.EventsPending*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.MainIteration
- commentId: M:Mono.Terminal.MainLoop.MainIteration
- id: MainIteration
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: MainIteration()
- nameWithType: MainLoop.MainIteration()
- fullName: Mono.Terminal.MainLoop.MainIteration()
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: MainIteration
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 490
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nRuns one iteration of timers and file watches\n"
- remarks: "\nYou use this to process all pending events (timers, idle handlers and file watches).\n\nYou can use it like this:\nwhile (main.EvensPending ()) MainIteration ();\n"
- example: []
- syntax:
- content: public void MainIteration()
- content.vb: Public Sub MainIteration
- overload: Mono.Terminal.MainLoop.MainIteration*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- - uid: Mono.Terminal.MainLoop.Run
- commentId: M:Mono.Terminal.MainLoop.Run
- id: Run
- parent: Mono.Terminal.MainLoop
- langs:
- - csharp
- - vb
- name: Run()
- nameWithType: MainLoop.Run()
- fullName: Mono.Terminal.MainLoop.Run()
- type: Method
- source:
- remote:
- path: Terminal.Gui/MonoCurses/mainloop.cs
- branch: docs
- repo: tig:tig/gui.cs.git
- id: Run
- path: ../Terminal.Gui/MonoCurses/mainloop.cs
- startLine: 506
- assemblies:
- - Terminal.Gui
- namespace: Mono.Terminal
- summary: "\nRuns the mainloop.\n"
- example: []
- syntax:
- content: public void Run()
- content.vb: Public Sub Run
- overload: Mono.Terminal.MainLoop.Run*
- modifiers.csharp:
- - public
- modifiers.vb:
- - Public
- references:
- - uid: Mono.Terminal
- commentId: N:Mono.Terminal
- name: Mono.Terminal
- nameWithType: Mono.Terminal
- fullName: Mono.Terminal
- - uid: System.Object
- commentId: T:System.Object
- parent: System
- isExternal: true
- name: Object
- nameWithType: Object
- fullName: System.Object
- - uid: System.Object.Equals(System.Object)
- commentId: M:System.Object.Equals(System.Object)
- parent: System.Object
- isExternal: true
- name: Equals(Object)
- nameWithType: Object.Equals(Object)
- fullName: System.Object.Equals(System.Object)
- spec.csharp:
- - uid: System.Object.Equals(System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.Equals(System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.Equals(System.Object,System.Object)
- commentId: M:System.Object.Equals(System.Object,System.Object)
- parent: System.Object
- isExternal: true
- name: Equals(Object, Object)
- nameWithType: Object.Equals(Object, Object)
- fullName: System.Object.Equals(System.Object, System.Object)
- spec.csharp:
- - uid: System.Object.Equals(System.Object,System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.Equals(System.Object,System.Object)
- name: Equals
- nameWithType: Object.Equals
- fullName: System.Object.Equals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.GetHashCode
- commentId: M:System.Object.GetHashCode
- parent: System.Object
- isExternal: true
- name: GetHashCode()
- nameWithType: Object.GetHashCode()
- fullName: System.Object.GetHashCode()
- spec.csharp:
- - uid: System.Object.GetHashCode
- name: GetHashCode
- nameWithType: Object.GetHashCode
- fullName: System.Object.GetHashCode
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.GetHashCode
- name: GetHashCode
- nameWithType: Object.GetHashCode
- fullName: System.Object.GetHashCode
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.GetType
- commentId: M:System.Object.GetType
- parent: System.Object
- isExternal: true
- name: GetType()
- nameWithType: Object.GetType()
- fullName: System.Object.GetType()
- spec.csharp:
- - uid: System.Object.GetType
- name: GetType
- nameWithType: Object.GetType
- fullName: System.Object.GetType
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.GetType
- name: GetType
- nameWithType: Object.GetType
- fullName: System.Object.GetType
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.MemberwiseClone
- commentId: M:System.Object.MemberwiseClone
- parent: System.Object
- isExternal: true
- name: MemberwiseClone()
- nameWithType: Object.MemberwiseClone()
- fullName: System.Object.MemberwiseClone()
- spec.csharp:
- - uid: System.Object.MemberwiseClone
- name: MemberwiseClone
- nameWithType: Object.MemberwiseClone
- fullName: System.Object.MemberwiseClone
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.MemberwiseClone
- name: MemberwiseClone
- nameWithType: Object.MemberwiseClone
- fullName: System.Object.MemberwiseClone
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
- parent: System.Object
- isExternal: true
- name: ReferenceEquals(Object, Object)
- nameWithType: Object.ReferenceEquals(Object, Object)
- fullName: System.Object.ReferenceEquals(System.Object, System.Object)
- spec.csharp:
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- name: ReferenceEquals
- nameWithType: Object.ReferenceEquals
- fullName: System.Object.ReferenceEquals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.ReferenceEquals(System.Object,System.Object)
- name: ReferenceEquals
- nameWithType: Object.ReferenceEquals
- fullName: System.Object.ReferenceEquals
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Object
- name: Object
- nameWithType: Object
- fullName: System.Object
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Object.ToString
- commentId: M:System.Object.ToString
- parent: System.Object
- isExternal: true
- name: ToString()
- nameWithType: Object.ToString()
- fullName: System.Object.ToString()
- spec.csharp:
- - uid: System.Object.ToString
- name: ToString
- nameWithType: Object.ToString
- fullName: System.Object.ToString
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- spec.vb:
- - uid: System.Object.ToString
- name: ToString
- nameWithType: Object.ToString
- fullName: System.Object.ToString
- isExternal: true
- - name: (
- nameWithType: (
- fullName: (
- - name: )
- nameWithType: )
- fullName: )
- - uid: System
- commentId: N:System
- isExternal: true
- name: System
- nameWithType: System
- fullName: System
- - uid: Mono.Terminal.MainLoop.Driver*
- commentId: Overload:Mono.Terminal.MainLoop.Driver
- name: Driver
- nameWithType: MainLoop.Driver
- fullName: Mono.Terminal.MainLoop.Driver
- - uid: Mono.Terminal.IMainLoopDriver
- commentId: T:Mono.Terminal.IMainLoopDriver
- parent: Mono.Terminal
- name: IMainLoopDriver
- nameWithType: IMainLoopDriver
- fullName: Mono.Terminal.IMainLoopDriver
- - uid: Mono.Terminal.MainLoop.#ctor*
- commentId: Overload:Mono.Terminal.MainLoop.#ctor
- name: MainLoop
- nameWithType: MainLoop.MainLoop
- fullName: Mono.Terminal.MainLoop.MainLoop
- - uid: Mono.Terminal.MainLoop.Invoke*
- commentId: Overload:Mono.Terminal.MainLoop.Invoke
- name: Invoke
- nameWithType: MainLoop.Invoke
- fullName: Mono.Terminal.MainLoop.Invoke
- - uid: System.Action
- commentId: T:System.Action
- parent: System
- isExternal: true
- name: Action
- nameWithType: Action
- fullName: System.Action
- - uid: Mono.Terminal.MainLoop.AddIdle*
- commentId: Overload:Mono.Terminal.MainLoop.AddIdle
- name: AddIdle
- nameWithType: MainLoop.AddIdle
- fullName: Mono.Terminal.MainLoop.AddIdle
- - uid: System.Func{System.Boolean}
- commentId: T:System.Func{System.Boolean}
- parent: System
- definition: System.Func`1
- name: Func<Boolean>
- nameWithType: Func<Boolean>
- fullName: System.Func<System.Boolean>
- nameWithType.vb: Func(Of Boolean)
- fullName.vb: System.Func(Of System.Boolean)
- name.vb: Func(Of Boolean)
- spec.csharp:
- - uid: System.Func`1
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: <
- nameWithType: <
- fullName: <
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: '>'
- nameWithType: '>'
- fullName: '>'
- spec.vb:
- - uid: System.Func`1
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: '(Of '
- nameWithType: '(Of '
- fullName: '(Of '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Func`1
- commentId: T:System.Func`1
- isExternal: true
- name: Func<TResult>
- nameWithType: Func<TResult>
- fullName: System.Func<TResult>
- nameWithType.vb: Func(Of TResult)
- fullName.vb: System.Func(Of TResult)
- name.vb: Func(Of TResult)
- spec.csharp:
- - uid: System.Func`1
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: <
- nameWithType: <
- fullName: <
- - name: TResult
- nameWithType: TResult
- fullName: TResult
- - name: '>'
- nameWithType: '>'
- fullName: '>'
- spec.vb:
- - uid: System.Func`1
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: '(Of '
- nameWithType: '(Of '
- fullName: '(Of '
- - name: TResult
- nameWithType: TResult
- fullName: TResult
- - name: )
- nameWithType: )
- fullName: )
- - uid: Mono.Terminal.MainLoop.RemoveIdle*
- commentId: Overload:Mono.Terminal.MainLoop.RemoveIdle
- name: RemoveIdle
- nameWithType: MainLoop.RemoveIdle
- fullName: Mono.Terminal.MainLoop.RemoveIdle
- - uid: Mono.Terminal.MainLoop.AddTimeout*
- commentId: Overload:Mono.Terminal.MainLoop.AddTimeout
- name: AddTimeout
- nameWithType: MainLoop.AddTimeout
- fullName: Mono.Terminal.MainLoop.AddTimeout
- - uid: System.TimeSpan
- commentId: T:System.TimeSpan
- parent: System
- isExternal: true
- name: TimeSpan
- nameWithType: TimeSpan
- fullName: System.TimeSpan
- - uid: System.Func{Mono.Terminal.MainLoop,System.Boolean}
- commentId: T:System.Func{Mono.Terminal.MainLoop,System.Boolean}
- parent: System
- definition: System.Func`2
- name: Func<MainLoop, Boolean>
- nameWithType: Func<MainLoop, Boolean>
- fullName: System.Func<Mono.Terminal.MainLoop, System.Boolean>
- nameWithType.vb: Func(Of MainLoop, Boolean)
- fullName.vb: System.Func(Of Mono.Terminal.MainLoop, System.Boolean)
- name.vb: Func(Of MainLoop, Boolean)
- spec.csharp:
- - uid: System.Func`2
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: <
- nameWithType: <
- fullName: <
- - uid: Mono.Terminal.MainLoop
- name: MainLoop
- nameWithType: MainLoop
- fullName: Mono.Terminal.MainLoop
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: '>'
- nameWithType: '>'
- fullName: '>'
- spec.vb:
- - uid: System.Func`2
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: '(Of '
- nameWithType: '(Of '
- fullName: '(Of '
- - uid: Mono.Terminal.MainLoop
- name: MainLoop
- nameWithType: MainLoop
- fullName: Mono.Terminal.MainLoop
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - uid: System.Boolean
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- isExternal: true
- - name: )
- nameWithType: )
- fullName: )
- - uid: System.Func`2
- commentId: T:System.Func`2
- isExternal: true
- name: Func<T, TResult>
- nameWithType: Func<T, TResult>
- fullName: System.Func<T, TResult>
- nameWithType.vb: Func(Of T, TResult)
- fullName.vb: System.Func(Of T, TResult)
- name.vb: Func(Of T, TResult)
- spec.csharp:
- - uid: System.Func`2
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: <
- nameWithType: <
- fullName: <
- - name: T
- nameWithType: T
- fullName: T
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - name: TResult
- nameWithType: TResult
- fullName: TResult
- - name: '>'
- nameWithType: '>'
- fullName: '>'
- spec.vb:
- - uid: System.Func`2
- name: Func
- nameWithType: Func
- fullName: System.Func
- isExternal: true
- - name: '(Of '
- nameWithType: '(Of '
- fullName: '(Of '
- - name: T
- nameWithType: T
- fullName: T
- - name: ', '
- nameWithType: ', '
- fullName: ', '
- - name: TResult
- nameWithType: TResult
- fullName: TResult
- - name: )
- nameWithType: )
- fullName: )
- - uid: Mono.Terminal.MainLoop.RemoveTimeout*
- commentId: Overload:Mono.Terminal.MainLoop.RemoveTimeout
- name: RemoveTimeout
- nameWithType: MainLoop.RemoveTimeout
- fullName: Mono.Terminal.MainLoop.RemoveTimeout
- - uid: Mono.Terminal.MainLoop.Stop*
- commentId: Overload:Mono.Terminal.MainLoop.Stop
- name: Stop
- nameWithType: MainLoop.Stop
- fullName: Mono.Terminal.MainLoop.Stop
- - uid: Mono.Terminal.MainLoop.EventsPending*
- commentId: Overload:Mono.Terminal.MainLoop.EventsPending
- name: EventsPending
- nameWithType: MainLoop.EventsPending
- fullName: Mono.Terminal.MainLoop.EventsPending
- - uid: System.Boolean
- commentId: T:System.Boolean
- parent: System
- isExternal: true
- name: Boolean
- nameWithType: Boolean
- fullName: System.Boolean
- - uid: Mono.Terminal.MainLoop.MainIteration*
- commentId: Overload:Mono.Terminal.MainLoop.MainIteration
- name: MainIteration
- nameWithType: MainLoop.MainIteration
- fullName: Mono.Terminal.MainLoop.MainIteration
- - uid: Mono.Terminal.MainLoop.Run*
- commentId: Overload:Mono.Terminal.MainLoop.Run
- name: Run
- nameWithType: MainLoop.Run
- fullName: Mono.Terminal.MainLoop.Run
- shouldSkipMarkup: true
|