123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>GalaSoft.MvvmLight</name>
- </assembly>
- <members>
- <member name="T:GalaSoft.MvvmLight.Command.RelayCommand">
- <summary>
- A command whose sole purpose is to relay its functionality to other
- objects by invoking delegates. The default return value for the CanExecute
- method is 'true'. This class does not allow you to accept command parameters in the
- Execute and CanExecute callback methods.
- </summary>
- <remarks>If you are using this class in WPF4.5 or above, you need to use the
- GalaSoft.MvvmLight.CommandWpf namespace (instead of GalaSoft.MvvmLight.Command).
- This will enable (or restore) the CommandManager class which handles
- automatic enabling/disabling of controls based on the CanExecute delegate.</remarks>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand.#ctor(System.Action)">
- <summary>
- Initializes a new instance of the RelayCommand class that
- can always execute.
- </summary>
- <param name="execute">The execution logic.</param>
- <exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand.#ctor(System.Action,System.Func{System.Boolean})">
- <summary>
- Initializes a new instance of the RelayCommand class.
- </summary>
- <param name="execute">The execution logic.</param>
- <param name="canExecute">The execution status logic.</param>
- <exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand.RaiseCanExecuteChanged">
- <summary>
- Raises the <see cref="E:GalaSoft.MvvmLight.Command.RelayCommand.CanExecuteChanged"/> event.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand.CanExecute(System.Object)">
- <summary>
- Defines the method that determines whether the command can execute in its current state.
- </summary>
- <param name="parameter">This parameter will always be ignored.</param>
- <returns>true if this command can be executed; otherwise, false.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand.Execute(System.Object)">
- <summary>
- Defines the method to be called when the command is invoked.
- </summary>
- <param name="parameter">This parameter will always be ignored.</param>
- </member>
- <member name="E:GalaSoft.MvvmLight.Command.RelayCommand.CanExecuteChanged">
- <summary>
- Occurs when changes occur that affect whether the command should execute.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Command.RelayCommand`1">
- <summary>
- A generic command whose sole purpose is to relay its functionality to other
- objects by invoking delegates. The default return value for the CanExecute
- method is 'true'. This class allows you to accept command parameters in the
- Execute and CanExecute callback methods.
- </summary>
- <typeparam name="T">The type of the command parameter.</typeparam>
- <remarks>If you are using this class in WPF4.5 or above, you need to use the
- GalaSoft.MvvmLight.CommandWpf namespace (instead of GalaSoft.MvvmLight.Command).
- This will enable (or restore) the CommandManager class which handles
- automatic enabling/disabling of controls based on the CanExecute delegate.</remarks>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.#ctor(System.Action{`0})">
- <summary>
- Initializes a new instance of the RelayCommand class that
- can always execute.
- </summary>
- <param name="execute">The execution logic.</param>
- <exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.#ctor(System.Action{`0},System.Func{`0,System.Boolean})">
- <summary>
- Initializes a new instance of the RelayCommand class.
- </summary>
- <param name="execute">The execution logic.</param>
- <param name="canExecute">The execution status logic.</param>
- <exception cref="T:System.ArgumentNullException">If the execute argument is null.</exception>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.RaiseCanExecuteChanged">
- <summary>
- Raises the <see cref="E:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecuteChanged"/> event.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecute(System.Object)">
- <summary>
- Defines the method that determines whether the command can execute in its current state.
- </summary>
- <param name="parameter">Data used by the command. If the command does not require data
- to be passed, this object can be set to a null reference</param>
- <returns>true if this command can be executed; otherwise, false.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Command.RelayCommand`1.Execute(System.Object)">
- <summary>
- Defines the method to be called when the command is invoked.
- </summary>
- <param name="parameter">Data used by the command. If the command does not require data
- to be passed, this object can be set to a null reference</param>
- </member>
- <member name="E:GalaSoft.MvvmLight.Command.RelayCommand`1.CanExecuteChanged">
- <summary>
- Occurs when changes occur that affect whether the command should execute.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.IExecuteWithObject">
- <summary>
- This interface is meant for the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction`1"/> class and can be
- useful if you store multiple WeakAction{T} instances but don't know in advance
- what type T represents.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)">
- <summary>
- Executes an action.
- </summary>
- <param name="parameter">A parameter passed as an object,
- to be casted to the appropriate type.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.MarkForDeletion">
- <summary>
- Deletes all references, which notifies the cleanup method
- that this entry must be deleted.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.Target">
- <summary>
- The target of the WeakAction.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.IExecuteWithObjectAndResult">
- <summary>
- This interface is meant for the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakFunc`1"/> class and can be
- useful if you store multiple WeakFunc{T} instances but don't know in advance
- what type T represents.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObjectAndResult.ExecuteWithObject(System.Object)">
- <summary>
- Executes a Func and returns the result.
- </summary>
- <param name="parameter">A parameter passed as an object,
- to be casted to the appropriate type.</param>
- <returns>The result of the operation.</returns>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.WeakAction">
- <summary>
- Stores an <see cref="T:System.Action"/> without causing a hard reference
- to be created to the Action's owner. The owner can be garbage collected at any time.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor">
- <summary>
- Initializes an empty instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor(System.Action)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
- </summary>
- <param name="action">The action that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.#ctor(System.Object,System.Action)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Helpers.WeakAction"/> class.
- </summary>
- <param name="target">The action's owner.</param>
- <param name="action">The action that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.Execute">
- <summary>
- Executes the action. This only happens if the action's owner
- is still alive.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction.MarkForDeletion">
- <summary>
- Sets the reference that this instance stores to null.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Method">
- <summary>
- Gets or sets the <see cref="T:System.Reflection.MethodInfo"/> corresponding to this WeakAction's
- method passed in the constructor.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.MethodName">
- <summary>
- Gets the name of the method that this WeakAction represents.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionReference">
- <summary>
- Gets or sets a WeakReference to this WeakAction's action's target.
- This is not necessarily the same as
- <see cref="P:GalaSoft.MvvmLight.Helpers.WeakAction.Reference"/>, for example if the
- method is anonymous.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Reference">
- <summary>
- Gets or sets a WeakReference to the target passed when constructing
- the WeakAction. This is not necessarily the same as
- <see cref="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionReference"/>, for example if the
- method is anonymous.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.IsStatic">
- <summary>
- Gets a value indicating whether the WeakAction is static or not.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.IsAlive">
- <summary>
- Gets a value indicating whether the Action's owner is still alive, or if it was collected
- by the Garbage Collector already.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.Target">
- <summary>
- Gets the Action's owner. This object is stored as a
- <see cref="T:System.WeakReference"/>.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction.ActionTarget">
- <summary>
- The target of the weak reference.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.WeakAction`1">
- <summary>
- Stores an Action without causing a hard reference
- to be created to the Action's owner. The owner can be garbage collected at any time.
- </summary>
- <typeparam name="T">The type of the Action's parameter.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.#ctor(System.Action{`0})">
- <summary>
- Initializes a new instance of the WeakAction class.
- </summary>
- <param name="action">The action that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.#ctor(System.Object,System.Action{`0})">
- <summary>
- Initializes a new instance of the WeakAction class.
- </summary>
- <param name="target">The action's owner.</param>
- <param name="action">The action that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.Execute">
- <summary>
- Executes the action. This only happens if the action's owner
- is still alive. The action's parameter is set to default(T).
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.Execute(`0)">
- <summary>
- Executes the action. This only happens if the action's owner
- is still alive.
- </summary>
- <param name="parameter">A parameter to be passed to the action.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.ExecuteWithObject(System.Object)">
- <summary>
- Executes the action with a parameter of type object. This parameter
- will be casted to T. This method implements <see cref="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)"/>
- and can be useful if you store multiple WeakAction{T} instances but don't know in advance
- what type T represents.
- </summary>
- <param name="parameter">The parameter that will be passed to the action after
- being casted to T.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakAction`1.MarkForDeletion">
- <summary>
- Sets all the actions that this WeakAction contains to null,
- which is a signal for containing objects that this WeakAction
- should be deleted.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction`1.MethodName">
- <summary>
- Gets the name of the method that this WeakAction represents.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakAction`1.IsAlive">
- <summary>
- Gets a value indicating whether the Action's owner is still alive, or if it was collected
- by the Garbage Collector already.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.WeakFunc`1">
- <summary>
- Stores a Func<T> without causing a hard reference
- to be created to the Func's owner. The owner can be garbage collected at any time.
- </summary>
- <typeparam name="TResult">The type of the result of the Func that will be stored
- by this weak reference.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor">
- <summary>
- Initializes an empty instance of the WeakFunc class.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor(System.Func{`0})">
- <summary>
- Initializes a new instance of the WeakFunc class.
- </summary>
- <param name="func">The Func that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.#ctor(System.Object,System.Func{`0})">
- <summary>
- Initializes a new instance of the WeakFunc class.
- </summary>
- <param name="target">The Func's owner.</param>
- <param name="func">The Func that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Execute">
- <summary>
- Executes the action. This only happens if the Func's owner
- is still alive.
- </summary>
- <returns>The result of the Func stored as reference.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`1.MarkForDeletion">
- <summary>
- Sets the reference that this instance stores to null.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Method">
- <summary>
- Gets or sets the <see cref="T:System.Reflection.MethodInfo"/> corresponding to this WeakFunc's
- method passed in the constructor.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.IsStatic">
- <summary>
- Get a value indicating whether the WeakFunc is static or not.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.MethodName">
- <summary>
- Gets the name of the method that this WeakFunc represents.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncReference">
- <summary>
- Gets or sets a WeakReference to this WeakFunc's action's target.
- This is not necessarily the same as
- <see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Reference"/>, for example if the
- method is anonymous.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Reference">
- <summary>
- Gets or sets a WeakReference to the target passed when constructing
- the WeakFunc. This is not necessarily the same as
- <see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncReference"/>, for example if the
- method is anonymous.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.IsAlive">
- <summary>
- Gets a value indicating whether the Func's owner is still alive, or if it was collected
- by the Garbage Collector already.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Target">
- <summary>
- Gets the Func's owner. This object is stored as a
- <see cref="T:System.WeakReference"/>.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.FuncTarget">
- <summary>
- Gets the owner of the Func that was passed as parameter.
- This is not necessarily the same as
- <see cref="P:GalaSoft.MvvmLight.Helpers.WeakFunc`1.Target"/>, for example if the
- method is anonymous.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Helpers.WeakFunc`2">
- <summary>
- Stores an Func without causing a hard reference
- to be created to the Func's owner. The owner can be garbage collected at any time.
- </summary>
- <typeparam name="T">The type of the Func's parameter.</typeparam>
- <typeparam name="TResult">The type of the Func's return value.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.#ctor(System.Func{`0,`1})">
- <summary>
- Initializes a new instance of the WeakFunc class.
- </summary>
- <param name="func">The Func that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.#ctor(System.Object,System.Func{`0,`1})">
- <summary>
- Initializes a new instance of the WeakFunc class.
- </summary>
- <param name="target">The Func's owner.</param>
- <param name="func">The Func that will be associated to this instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.Execute">
- <summary>
- Executes the Func. This only happens if the Func's owner
- is still alive. The Func's parameter is set to default(T).
- </summary>
- <returns>The result of the Func stored as reference.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.Execute(`0)">
- <summary>
- Executes the Func. This only happens if the Func's owner
- is still alive.
- </summary>
- <param name="parameter">A parameter to be passed to the action.</param>
- <returns>The result of the Func stored as reference.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.ExecuteWithObject(System.Object)">
- <summary>
- Executes the Func with a parameter of type object. This parameter
- will be casted to T. This method implements <see cref="M:GalaSoft.MvvmLight.Helpers.IExecuteWithObject.ExecuteWithObject(System.Object)"/>
- and can be useful if you store multiple WeakFunc{T} instances but don't know in advance
- what type T represents.
- </summary>
- <param name="parameter">The parameter that will be passed to the Func after
- being casted to T.</param>
- <returns>The result of the execution as object, to be casted to T.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Helpers.WeakFunc`2.MarkForDeletion">
- <summary>
- Sets all the funcs that this WeakFunc contains to null,
- which is a signal for containing objects that this WeakFunc
- should be deleted.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`2.MethodName">
- <summary>
- Gets or sets the name of the method that this WeakFunc represents.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Helpers.WeakFunc`2.IsAlive">
- <summary>
- Gets a value indicating whether the Func's owner is still alive, or if it was collected
- by the Garbage Collector already.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.ICleanup">
- <summary>
- Defines a common interface for classes that should be cleaned up,
- but without the implications that IDisposable presupposes. An instance
- implementing ICleanup can be cleaned up without being
- disposed and garbage collected.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.ICleanup.Cleanup">
- <summary>
- Cleans up the instance, for example by saving its state,
- removing resources, etc...
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.DialogMessage">
- <summary>
- Use this class to send a message requesting to display a message box with features
- corresponding to this message's properties. The Callback property should be used
- to notify the message's sender about the user's choice in the message box.
- Typically, you can use this message typ's recipient will be an element of the View,
- and the sender will possibly be a ViewModel.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.GenericMessage`1">
- <summary>
- Passes a generic value (Content) to a recipient.
- </summary>
- <typeparam name="T">The type of the Content property.</typeparam>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.MessageBase">
- <summary>
- Base class for all messages broadcasted by the Messenger.
- You can create your own message types by extending this class.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor">
- <summary>
- Initializes a new instance of the MessageBase class.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor(System.Object)">
- <summary>
- Initializes a new instance of the MessageBase class.
- </summary>
- <param name="sender">The message's original sender.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.MessageBase.#ctor(System.Object,System.Object)">
- <summary>
- Initializes a new instance of the MessageBase class.
- </summary>
- <param name="sender">The message's original sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.MessageBase.Sender">
- <summary>
- Gets or sets the message's sender.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.MessageBase.Target">
- <summary>
- Gets or sets the message's intended target. This property can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(`0)">
- <summary>
- Initializes a new instance of the GenericMessage class.
- </summary>
- <param name="content">The message content.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(System.Object,`0)">
- <summary>
- Initializes a new instance of the GenericMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="content">The message content.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.GenericMessage`1.#ctor(System.Object,System.Object,`0)">
- <summary>
- Initializes a new instance of the GenericMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="content">The message content.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.GenericMessage`1.Content">
- <summary>
- Gets or sets the message's content.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.DialogMessage.#ctor(System.String,System.Action{System.Windows.MessageBoxResult})">
- <summary>
- Initializes a new instance of the DialogMessage class.
- </summary>
- <param name="content">The text displayed by the message box.</param>
- <param name="callback">A callback method that should be executed to deliver the result
- of the message box to the object that sent the message.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.DialogMessage.#ctor(System.Object,System.String,System.Action{System.Windows.MessageBoxResult})">
- <summary>
- Initializes a new instance of the DialogMessage class.
- </summary>
- <param name="sender">The message's original sender.</param>
- <param name="content">The text displayed by the message box.</param>
- <param name="callback">A callback method that should be executed to deliver the result
- of the message box to the object that sent the message.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.DialogMessage.#ctor(System.Object,System.Object,System.String,System.Action{System.Windows.MessageBoxResult})">
- <summary>
- Initializes a new instance of the DialogMessage class.
- </summary>
- <param name="sender">The message's original sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="content">The text displayed by the message box.</param>
- <param name="callback">A callback method that should be executed to deliver the result
- of the message box to the object that sent the message.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.DialogMessage.ProcessCallback(System.Windows.MessageBoxResult)">
- <summary>
- Utility method, checks if the <see cref="P:GalaSoft.MvvmLight.Messaging.DialogMessage.Callback"/> property is
- null, and if it is not null, executes it.
- </summary>
- <param name="result">The result that must be passed
- to the dialog message caller.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.DialogMessage.Button">
- <summary>
- Gets or sets the buttons displayed by the message box.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.DialogMessage.Callback">
- <summary>
- Gets a callback method that should be executed to deliver the result
- of the message box to the object that sent the message.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.DialogMessage.Caption">
- <summary>
- Gets or sets the caption for the message box.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.DialogMessage.DefaultResult">
- <summary>
- Gets or sets which result is the default in the message box.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.IMessenger">
- <summary>
- The Messenger is a class allowing objects to exchange messages.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage. The action
- parameter will be executed when a corresponding message is sent.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Object,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent. See the receiveDerivedMessagesToo parameter
- for details on how messages deriving from TMessage (or, if TMessage is an interface,
- messages implementing TMessage) can be received too.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Object,System.Boolean,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent. See the receiveDerivedMessagesToo parameter
- for details on how messages deriving from TMessage (or, if TMessage is an interface,
- messages implementing TMessage) can be received too.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- <param name="receiveDerivedMessagesToo">If true, message types deriving from
- TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.
- <para>Also, if TMessage is an interface, message types implementing TMessage will also be
- transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.</para>
- </param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Register``1(System.Object,System.Boolean,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent. See the receiveDerivedMessagesToo parameter
- for details on how messages deriving from TMessage (or, if TMessage is an interface,
- messages implementing TMessage) can be received too.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="receiveDerivedMessagesToo">If true, message types deriving from
- TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.
- <para>Also, if TMessage is an interface, message types implementing TMessage will also be
- transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.</para>
- </param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``1(``0)">
- <summary>
- Sends a message to registered recipients. The message will
- reach all recipients that registered for this message type
- using one of the Register methods.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``2(``0)">
- <summary>
- Sends a message to registered recipients. The message will
- reach only recipients that registered for this message type
- using one of the Register methods, and that are
- of the targetType.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <typeparam name="TTarget">The type of recipients that will receive
- the message. The message won't be sent to recipients of another type.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Send``1(``0,System.Object)">
- <summary>
- Sends a message to registered recipients. The message will
- reach only recipients that registered for this message type
- using one of the Register methods, and that are
- of the targetType.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister(System.Object)">
- <summary>
- Unregisters a messager recipient completely. After this method
- is executed, the recipient will not receive any messages anymore.
- </summary>
- <param name="recipient">The recipient that must be unregistered.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object)">
- <summary>
- Unregisters a message recipient for a given type of messages only.
- After this method is executed, the recipient will not receive messages
- of type TMessage anymore, but will still receive other message types (if it
- registered for them previously).
- </summary>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- <param name="recipient">The recipient that must be unregistered.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Object)">
- <summary>
- Unregisters a message recipient for a given type of messages only and for a given token.
- After this method is executed, the recipient will not receive messages
- of type TMessage anymore with the given token, but will still receive other message types
- or messages with other tokens (if it registered for them previously).
- </summary>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="token">The token for which the recipient must be unregistered.</param>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Action{``0})">
- <summary>
- Unregisters a message recipient for a given type of messages and for
- a given action. Other message types will still be transmitted to the
- recipient (if it registered for them previously). Other actions that have
- been registered for the message type TMessage and for the given recipient (if
- available) will also remain available.
- </summary>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="action">The action that must be unregistered for
- the recipient and for the message type TMessage.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.IMessenger.Unregister``1(System.Object,System.Object,System.Action{``0})">
- <summary>
- Unregisters a message recipient for a given type of messages, for
- a given action and a given token. Other message types will still be transmitted to the
- recipient (if it registered for them previously). Other actions that have
- been registered for the message type TMessage, for the given recipient and other tokens (if
- available) will also remain available.
- </summary>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="token">The token for which the recipient must be unregistered.</param>
- <param name="action">The action that must be unregistered for
- the recipient and for the message type TMessage.</param>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.Messenger">
- <summary>
- The Messenger is a class allowing objects to exchange messages.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage. The action
- parameter will be executed when a corresponding message is sent.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Boolean,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent. See the receiveDerivedMessagesToo parameter
- for details on how messages deriving from TMessage (or, if TMessage is an interface,
- messages implementing TMessage) can be received too.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="receiveDerivedMessagesToo">If true, message types deriving from
- TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.
- <para>Also, if TMessage is an interface, message types implementing TMessage will also be
- transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.</para>
- </param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Object,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Register``1(System.Object,System.Object,System.Boolean,System.Action{``0})">
- <summary>
- Registers a recipient for a type of message TMessage.
- The action parameter will be executed when a corresponding
- message is sent. See the receiveDerivedMessagesToo parameter
- for details on how messages deriving from TMessage (or, if TMessage is an interface,
- messages implementing TMessage) can be received too.
- <para>Registering a recipient does not create a hard reference to it,
- so if this recipient is deleted, no memory leak is caused.</para>
- </summary>
- <typeparam name="TMessage">The type of message that the recipient registers
- for.</typeparam>
- <param name="recipient">The recipient that will receive the messages.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- <param name="receiveDerivedMessagesToo">If true, message types deriving from
- TMessage will also be transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage derive from OrderMessage, registering for OrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.
- <para>Also, if TMessage is an interface, message types implementing TMessage will also be
- transmitted to the recipient. For example, if a SendOrderMessage
- and an ExecuteOrderMessage implement IOrderMessage, registering for IOrderMessage
- and setting receiveDerivedMessagesToo to true will send SendOrderMessage
- and ExecuteOrderMessage to the recipient that registered.</para>
- </param>
- <param name="action">The action that will be executed when a message
- of type TMessage is sent.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``1(``0)">
- <summary>
- Sends a message to registered recipients. The message will
- reach all recipients that registered for this message type
- using one of the Register methods.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``2(``0)">
- <summary>
- Sends a message to registered recipients. The message will
- reach only recipients that registered for this message type
- using one of the Register methods, and that are
- of the targetType.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <typeparam name="TTarget">The type of recipients that will receive
- the message. The message won't be sent to recipients of another type.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Send``1(``0,System.Object)">
- <summary>
- Sends a message to registered recipients. The message will
- reach only recipients that registered for this message type
- using one of the Register methods, and that are
- of the targetType.
- </summary>
- <typeparam name="TMessage">The type of message that will be sent.</typeparam>
- <param name="message">The message to send to registered recipients.</param>
- <param name="token">A token for a messaging channel. If a recipient registers
- using a token, and a sender sends a message using the same token, then this
- message will be delivered to the recipient. Other recipients who did not
- use a token when registering (or who used a different token) will not
- get the message. Similarly, messages sent without any token, or with a different
- token, will not be delivered to that recipient.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister(System.Object)">
- <summary>
- Unregisters a messager recipient completely. After this method
- is executed, the recipient will not receive any messages anymore.
- </summary>
- <param name="recipient">The recipient that must be unregistered.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object)">
- <summary>
- Unregisters a message recipient for a given type of messages only.
- After this method is executed, the recipient will not receive messages
- of type TMessage anymore, but will still receive other message types (if it
- registered for them previously).
- </summary>
- <param name="recipient">The recipient that must be unregistered.</param>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Object)">
- <summary>
- Unregisters a message recipient for a given type of messages only and for a given token.
- After this method is executed, the recipient will not receive messages
- of type TMessage anymore with the given token, but will still receive other message types
- or messages with other tokens (if it registered for them previously).
- </summary>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="token">The token for which the recipient must be unregistered.</param>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Action{``0})">
- <summary>
- Unregisters a message recipient for a given type of messages and for
- a given action. Other message types will still be transmitted to the
- recipient (if it registered for them previously). Other actions that have
- been registered for the message type TMessage and for the given recipient (if
- available) will also remain available.
- </summary>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="action">The action that must be unregistered for
- the recipient and for the message type TMessage.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Unregister``1(System.Object,System.Object,System.Action{``0})">
- <summary>
- Unregisters a message recipient for a given type of messages, for
- a given action and a given token. Other message types will still be transmitted to the
- recipient (if it registered for them previously). Other actions that have
- been registered for the message type TMessage, for the given recipient and other tokens (if
- available) will also remain available.
- </summary>
- <typeparam name="TMessage">The type of messages that the recipient wants
- to unregister from.</typeparam>
- <param name="recipient">The recipient that must be unregistered.</param>
- <param name="token">The token for which the recipient must be unregistered.</param>
- <param name="action">The action that must be unregistered for
- the recipient and for the message type TMessage.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.OverrideDefault(GalaSoft.MvvmLight.Messaging.IMessenger)">
- <summary>
- Provides a way to override the Messenger.Default instance with
- a custom instance, for example for unit testing purposes.
- </summary>
- <param name="newMessenger">The instance that will be used as Messenger.Default.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Reset">
- <summary>
- Sets the Messenger's default (static) instance to null.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.ResetAll">
- <summary>
- Provides a non-static access to the static <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Reset"/> method.
- Sets the Messenger's default (static) instance to null.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup">
- <summary>
- Notifies the Messenger that the lists of recipients should
- be scanned and cleaned up.
- Since recipients are stored as <see cref="T:System.WeakReference"/>,
- recipients can be garbage collected even though the Messenger keeps
- them in a list. During the cleanup operation, all "dead"
- recipients are removed from the lists. Since this operation
- can take a moment, it is only executed when the application is
- idle. For this reason, a user of the Messenger class should use
- <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup"/> instead of forcing one with the
- <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup"/> method.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup">
- <summary>
- Scans the recipients' lists for "dead" instances and removes them.
- Since recipients are stored as <see cref="T:System.WeakReference"/>,
- recipients can be garbage collected even though the Messenger keeps
- them in a list. During the cleanup operation, all "dead"
- recipients are removed from the lists. Since this operation
- can take a moment, it is only executed when the application is
- idle. For this reason, a user of the Messenger class should use
- <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.RequestCleanup"/> instead of forcing one with the
- <see cref="M:GalaSoft.MvvmLight.Messaging.Messenger.Cleanup"/> method.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.Messenger.Default">
- <summary>
- Gets the Messenger's default instance, allowing
- to register and send messages in a static manner.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessage">
- <summary>
- Passes a string message (Notification) to a recipient.
- <para>Typically, notifications are defined as unique strings in a static class. To define
- a unique string, you can use Guid.NewGuid().ToString() or any other unique
- identifier.</para>
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.Object,System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage.#ctor(System.Object,System.Object,System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.NotificationMessage.Notification">
- <summary>
- Gets a string containing any arbitrary message to be
- passed to recipient(s).
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction">
- <summary>
- Provides a message class with a built-in callback. When the recipient
- is done processing the message, it can execute the callback to
- notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.Execute"/>
- method to execute the callback.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback">
- <summary>
- Provides a message class with a built-in callback. When the recipient
- is done processing the message, it can execute the callback to
- notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.Execute(System.Object[])"/>
- method to execute the callback. The callback method has one parameter.
- <seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> and
- <seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/>.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.String,System.Delegate)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
- </summary>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.Object,System.String,System.Delegate)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.#ctor(System.Object,System.Object,System.String,System.Delegate)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageWithCallback.Execute(System.Object[])">
- <summary>
- Executes the callback that was provided with the message with an
- arbitrary number of parameters.
- </summary>
- <param name="arguments">A number of parameters that will
- be passed to the callback method.</param>
- <returns>The object returned by the callback method.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.String,System.Action)">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
- </summary>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.Object,System.String,System.Action)">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.#ctor(System.Object,System.Object,System.String,System.Action)">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction.Execute">
- <summary>
- Executes the callback that was provided with the message.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1">
- <summary>
- Provides a message class with a built-in callback. When the recipient
- is done processing the message, it can execute the callback to
- notify the sender that it is done. Use the <see cref="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.Execute(`0)"/>
- method to execute the callback. The callback method has one parameter.
- <seealso cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction"/>.
- </summary>
- <typeparam name="TCallbackParameter">The type of the callback method's
- only parameter.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.String,System.Action{`0})">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
- </summary>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.Object,System.String,System.Action{`0})">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.#ctor(System.Object,System.Object,System.String,System.Action{`0})">
- <summary>
- Initializes a new instance of the
- <see cref="T:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="notification">An arbitrary string that will be
- carried by the message.</param>
- <param name="callback">The callback method that can be executed
- by the recipient to notify the sender that the message has been
- processed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessageAction`1.Execute(`0)">
- <summary>
- Executes the callback that was provided with the message.
- </summary>
- <param name="parameter">A parameter requested by the message's
- sender and providing additional information on the recipient's
- state.</param>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.NotificationMessage`1">
- <summary>
- Passes a string message (Notification) and a generic value (Content) to a recipient.
- </summary>
- <typeparam name="T">The type of the Content property.</typeparam>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(`0,System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="content">A value to be passed to recipient(s).</param>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(System.Object,`0,System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="content">A value to be passed to recipient(s).</param>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.#ctor(System.Object,System.Object,`0,System.String)">
- <summary>
- Initializes a new instance of the NotificationMessage class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="content">A value to be passed to recipient(s).</param>
- <param name="notification">A string containing any arbitrary message to be
- passed to recipient(s)</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.NotificationMessage`1.Notification">
- <summary>
- Gets a string containing any arbitrary message to be
- passed to recipient(s).
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1">
- <summary>
- Passes a string property name (PropertyName) and a generic value
- (<see cref="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.OldValue"/> and <see cref="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.NewValue"/>) to a recipient.
- This message type can be used to propagate a PropertyChanged event to
- a recipient using the messenging system.
- </summary>
- <typeparam name="T">The type of the OldValue and NewValue property.</typeparam>
- </member>
- <member name="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase">
- <summary>
- Basis class for the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class. This
- class allows a recipient to register for all PropertyChangedMessages without
- having to specify the type T.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.Object,System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.Object,System.Object,System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.#ctor(System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase"/> class.
- </summary>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessageBase.PropertyName">
- <summary>
- Gets or sets the name of the property that changed.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(System.Object,`0,`0,System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="oldValue">The property's value before the change occurred.</param>
- <param name="newValue">The property's value after the change occurred.</param>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(`0,`0,System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
- </summary>
- <param name="oldValue">The property's value before the change occurred.</param>
- <param name="newValue">The property's value after the change occurred.</param>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.#ctor(System.Object,System.Object,`0,`0,System.String)">
- <summary>
- Initializes a new instance of the <see cref="T:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1"/> class.
- </summary>
- <param name="sender">The message's sender.</param>
- <param name="target">The message's intended target. This parameter can be used
- to give an indication as to whom the message was intended for. Of course
- this is only an indication, amd may be null.</param>
- <param name="oldValue">The property's value before the change occurred.</param>
- <param name="newValue">The property's value after the change occurred.</param>
- <param name="propertyName">The name of the property that changed.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.NewValue">
- <summary>
- Gets the value that the property has after the change.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Messaging.PropertyChangedMessage`1.OldValue">
- <summary>
- Gets the value that the property had before the change.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.ObservableObject">
- <summary>
- A base class for objects of which the properties must be observable.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.VerifyPropertyName(System.String)">
- <summary>
- Verifies that a property name exists in this ViewModel. This method
- can be called before the property is used, for instance before
- calling RaisePropertyChanged. It avoids errors when a property name
- is changed but some places are missed.
- </summary>
- <remarks>This method is only active in DEBUG mode.</remarks>
- <param name="propertyName">The name of the property that will be
- checked.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanging(System.String)">
- <summary>
- Raises the PropertyChanging event if needed.
- </summary>
- <remarks>If the propertyName parameter
- does not correspond to an existing property on the current class, an
- exception is thrown in DEBUG configuration only.</remarks>
- <param name="propertyName">The name of the property that
- changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanged(System.String)">
- <summary>
- Raises the PropertyChanged event if needed.
- </summary>
- <remarks>If the propertyName parameter
- does not correspond to an existing property on the current class, an
- exception is thrown in DEBUG configuration only.</remarks>
- <param name="propertyName">The name of the property that
- changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanging``1(System.Linq.Expressions.Expression{System.Func{``0}})">
- <summary>
- Raises the PropertyChanging event if needed.
- </summary>
- <typeparam name="T">The type of the property that
- changes.</typeparam>
- <param name="propertyExpression">An expression identifying the property
- that changes.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.RaisePropertyChanged``1(System.Linq.Expressions.Expression{System.Func{``0}})">
- <summary>
- Raises the PropertyChanged event if needed.
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyExpression">An expression identifying the property
- that changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.GetPropertyName``1(System.Linq.Expressions.Expression{System.Func{``0}})">
- <summary>
- Extracts the name of a property from an expression.
- </summary>
- <typeparam name="T">The type of the property.</typeparam>
- <param name="propertyExpression">An expression returning the property's name.</param>
- <returns>The name of the property returned by the expression.</returns>
- <exception cref="T:System.ArgumentNullException">If the expression is null.</exception>
- <exception cref="T:System.ArgumentException">If the expression does not represent a property.</exception>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.Set``1(System.Linq.Expressions.Expression{System.Func{``0}},``0@,``0)">
- <summary>
- Assigns a new value to the property. Then, raises the
- PropertyChanged event if needed.
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyExpression">An expression identifying the property
- that changed.</param>
- <param name="field">The field storing the property's value.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <returns>True if the PropertyChanged event has been raised,
- false otherwise. The event is not raised if the old
- value is equal to the new value.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.ObservableObject.Set``1(System.String,``0@,``0)">
- <summary>
- Assigns a new value to the property. Then, raises the
- PropertyChanged event if needed.
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyName">The name of the property that
- changed.</param>
- <param name="field">The field storing the property's value.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <returns>True if the PropertyChanged event has been raised,
- false otherwise. The event is not raised if the old
- value is equal to the new value.</returns>
- </member>
- <member name="E:GalaSoft.MvvmLight.ObservableObject.PropertyChanged">
- <summary>
- Occurs after a property value changes.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.ObservableObject.PropertyChangedHandler">
- <summary>
- Provides access to the PropertyChanged event handler to derived classes.
- </summary>
- </member>
- <member name="E:GalaSoft.MvvmLight.ObservableObject.PropertyChanging">
- <summary>
- Occurs before a property value changes.
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.ObservableObject.PropertyChangingHandler">
- <summary>
- Provides access to the PropertyChanging event handler to derived classes.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.ViewModelBase">
- <summary>
- A base class for the ViewModel classes in the MVVM pattern.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.#ctor">
- <summary>
- Initializes a new instance of the ViewModelBase class.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.#ctor(GalaSoft.MvvmLight.Messaging.IMessenger)">
- <summary>
- Initializes a new instance of the ViewModelBase class.
- </summary>
- <param name="messenger">An instance of a <see cref="T:GalaSoft.MvvmLight.Messaging.Messenger"/>
- used to broadcast messages to other objects. If null, this class
- will attempt to broadcast using the Messenger's default
- instance.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.Cleanup">
- <summary>
- Unregisters this instance from the Messenger class.
- <para>To cleanup additional resources, override this method, clean
- up and then call base.Cleanup().</para>
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.Broadcast``1(``0,``0,System.String)">
- <summary>
- Broadcasts a PropertyChangedMessage using either the instance of
- the Messenger that was passed to this class (if available)
- or the Messenger's default instance.
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="oldValue">The value of the property before it
- changed.</param>
- <param name="newValue">The value of the property after it
- changed.</param>
- <param name="propertyName">The name of the property that
- changed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.RaisePropertyChanged``1(System.String,``0,``0,System.Boolean)">
- <summary>
- Raises the PropertyChanged event if needed, and broadcasts a
- PropertyChangedMessage using the Messenger instance (or the
- static default instance if no Messenger instance is available).
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyName">The name of the property that
- changed.</param>
- <param name="oldValue">The property's value before the change
- occurred.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <param name="broadcast">If true, a PropertyChangedMessage will
- be broadcasted. If false, only the event will be raised.</param>
- <remarks>If the propertyName parameter
- does not correspond to an existing property on the current class, an
- exception is thrown in DEBUG configuration only.</remarks>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.RaisePropertyChanged``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,System.Boolean)">
- <summary>
- Raises the PropertyChanged event if needed, and broadcasts a
- PropertyChangedMessage using the Messenger instance (or the
- static default instance if no Messenger instance is available).
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyExpression">An expression identifying the property
- that changed.</param>
- <param name="oldValue">The property's value before the change
- occurred.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <param name="broadcast">If true, a PropertyChangedMessage will
- be broadcasted. If false, only the event will be raised.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.Set``1(System.Linq.Expressions.Expression{System.Func{``0}},``0@,``0,System.Boolean)">
- <summary>
- Assigns a new value to the property. Then, raises the
- PropertyChanged event if needed, and broadcasts a
- PropertyChangedMessage using the Messenger instance (or the
- static default instance if no Messenger instance is available).
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyExpression">An expression identifying the property
- that changed.</param>
- <param name="field">The field storing the property's value.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <param name="broadcast">If true, a PropertyChangedMessage will
- be broadcasted. If false, only the event will be raised.</param>
- <returns>True if the PropertyChanged event was raised, false otherwise.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.ViewModelBase.Set``1(System.String,``0@,``0,System.Boolean)">
- <summary>
- Assigns a new value to the property. Then, raises the
- PropertyChanged event if needed, and broadcasts a
- PropertyChangedMessage using the Messenger instance (or the
- static default instance if no Messenger instance is available).
- </summary>
- <typeparam name="T">The type of the property that
- changed.</typeparam>
- <param name="propertyName">The name of the property that
- changed.</param>
- <param name="field">The field storing the property's value.</param>
- <param name="newValue">The property's value after the change
- occurred.</param>
- <param name="broadcast">If true, a PropertyChangedMessage will
- be broadcasted. If false, only the event will be raised.</param>
- <returns>True if the PropertyChanged event was raised, false otherwise.</returns>
- </member>
- <member name="P:GalaSoft.MvvmLight.ViewModelBase.IsInDesignMode">
- <summary>
- Gets a value indicating whether the control is in design mode
- (running under Blend or Visual Studio).
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.ViewModelBase.IsInDesignModeStatic">
- <summary>
- Gets a value indicating whether the control is in design mode
- (running in Blend or Visual Studio).
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.ViewModelBase.MessengerInstance">
- <summary>
- Gets or sets an instance of a <see cref="T:GalaSoft.MvvmLight.Messaging.IMessenger"/> used to
- broadcast messages to other objects. If null, this class will
- attempt to broadcast using the Messenger's default instance.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Views.INavigationService">
- <summary>
- An interface defining how navigation between pages should
- be performed in various frameworks such as Windows,
- Windows Phone, Android, iOS etc.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Views.INavigationService.GoBack">
- <summary>
- If possible, instructs the navigation service
- to discard the current page and display the previous page
- on the navigation stack.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Views.INavigationService.NavigateTo(System.String)">
- <summary>
- Instructs the navigation service to display a new page
- corresponding to the given key. Depending on the platforms,
- the navigation service might have to be configured with a
- key/page list.
- </summary>
- <param name="pageKey">The key corresponding to the page
- that should be displayed.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Views.INavigationService.NavigateTo(System.String,System.Object)">
- <summary>
- Instructs the navigation service to display a new page
- corresponding to the given key, and passes a parameter
- to the new page.
- Depending on the platforms, the navigation service might
- have to be Configure with a key/page list.
- </summary>
- <param name="pageKey">The key corresponding to the page
- that should be displayed.</param>
- <param name="parameter">The parameter that should be passed
- to the new page.</param>
- </member>
- <member name="P:GalaSoft.MvvmLight.Views.INavigationService.CurrentPageKey">
- <summary>
- The key corresponding to the currently displayed page.
- </summary>
- </member>
- <member name="T:GalaSoft.MvvmLight.Threading.DispatcherHelper">
- <summary>
- Helper class for dispatcher operations on the UI thread.
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Threading.DispatcherHelper.CheckBeginInvokeOnUI(System.Action)">
- <summary>
- Executes an action on the UI thread. If this method is called
- from the UI thread, the action is executed immendiately. If the
- method is called from another thread, the action will be enqueued
- on the UI thread's dispatcher and executed asynchronously.
- <para>For additional operations on the UI thread, you can get a
- reference to the UI thread's dispatcher thanks to the property
- <see cref="P:GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher"/></para>.
- </summary>
- <param name="action">The action that will be executed on the UI
- thread.</param>
- </member>
- <member name="M:GalaSoft.MvvmLight.Threading.DispatcherHelper.RunAsync(System.Action)">
- <summary>
- Invokes an action asynchronously on the UI thread.
- </summary>
- <param name="action">The action that must be executed.</param>
- <returns>An object, which is returned immediately after BeginInvoke is called, that can be used to interact
- with the delegate as it is pending execution in the event queue.</returns>
- </member>
- <member name="M:GalaSoft.MvvmLight.Threading.DispatcherHelper.Initialize">
- <summary>
- This method should be called once on the UI thread to ensure that
- the <see cref="P:GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher"/> property is initialized.
- <para>In a Silverlight application, call this method in the
- Application_Startup event handler, after the MainPage is constructed.</para>
- <para>In WPF, call this method on the static App() constructor.</para>
- </summary>
- </member>
- <member name="M:GalaSoft.MvvmLight.Threading.DispatcherHelper.Reset">
- <summary>
- Resets the class by deleting the <see cref="P:GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher"/>
- </summary>
- </member>
- <member name="P:GalaSoft.MvvmLight.Threading.DispatcherHelper.UIDispatcher">
- <summary>
- Gets a reference to the UI thread's dispatcher, after the
- <see cref="M:GalaSoft.MvvmLight.Threading.DispatcherHelper.Initialize"/> method has been called on the UI thread.
- </summary>
- </member>
- </members>
- </doc>
|