Sdílet prostřednictvím


PipelineMessage.TryGetProperty(Type, Object) Method

Definition

Attempts to get a property from the property bag for this PipelineMessage instance. Message properties are used to govern the behavior of specific policies in the ClientPipeline. Please refer to documentation for a specific PipelinePolicy to understand what properties it supports.

public bool TryGetProperty (Type key, out object? value);
member this.TryGetProperty : Type * obj -> bool
Public Function TryGetProperty (key As Type, ByRef value As Object) As Boolean

Parameters

key
Type

The key for the property in the message's property bag.

value
Object

The value of the property.

Returns

true if property exists; otherwise false.

Applies to