TransformBlock<TInput,TOutput>.ISourceBlock<TOutput>.ConsumeMessage Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Chiamato da un ITargetBlock<TInput> collegato per accettare e utilizzare DataflowMessageHeader precedentemente offerto da questo ISourceBlock<TOutput>.
virtual TOutput System.Threading.Tasks.Dataflow.ISourceBlock<TOutput>.ConsumeMessage(System::Threading::Tasks::Dataflow::DataflowMessageHeader messageHeader, System::Threading::Tasks::Dataflow::ITargetBlock<TOutput> ^ target, [Runtime::InteropServices::Out] bool % messageConsumed) = System::Threading::Tasks::Dataflow::ISourceBlock<TOutput>::ConsumeMessage;
TOutput ISourceBlock<TOutput>.ConsumeMessage (System.Threading.Tasks.Dataflow.DataflowMessageHeader messageHeader, System.Threading.Tasks.Dataflow.ITargetBlock<TOutput> target, out bool messageConsumed);
abstract member System.Threading.Tasks.Dataflow.ISourceBlock<TOutput>.ConsumeMessage : System.Threading.Tasks.Dataflow.DataflowMessageHeader * System.Threading.Tasks.Dataflow.ITargetBlock<'Output> * bool -> 'Output
override this.System.Threading.Tasks.Dataflow.ISourceBlock<TOutput>.ConsumeMessage : System.Threading.Tasks.Dataflow.DataflowMessageHeader * System.Threading.Tasks.Dataflow.ITargetBlock<'Output> * bool -> 'Output
Function ConsumeMessage (messageHeader As DataflowMessageHeader, target As ITargetBlock(Of TOutput), ByRef messageConsumed As Boolean) As TOutput Implements ISourceBlock(Of TOutput).ConsumeMessage
Parametri
- messageHeader
- DataflowMessageHeader
DataflowMessageHeader del messaggio utilizzato.
- target
- ITargetBlock<TOutput>
ITargetBlock<TInput> che consuma il messaggio.
- messageConsumed
- Boolean
true
se il messaggio è stato consumato con esito positivo, false
in caso contrario.
Restituisce
- TOutput
Valore del messaggio utilizzato. Questo valore può corrispondere a un'istanza diversa di DataflowMessageHeader in precedenza riservata e passata come messageHeader
a ConsumeMessage(DataflowMessageHeader, ITargetBlock<TOutput>, Boolean). L'oggetto ITargetBlock<TInput> che usa le risorse deve utilizzare il valore restituito al posto del valore passato come messageValue
con ITargetBlock<TInput>.OfferMessage(DataflowMessageHeader, TInput, ISourceBlock<TInput>, Boolean).
se il messaggio richiesto non è disponibile, il valore restituito sarà null
.
Implementazioni
Eccezioni
L'elemento messageHeader
non è valido.
L'elemento target
è null
.
Commenti
Solo ITargetBlock<TInput> le istanze collegate a questa ISourceBlock<TOutput> istanza possono usare ConsumeMessagee devono essere usate solo per utilizzare DataflowMessageHeader le istanze offerte in precedenza da questa origine alla destinazione.