WorkflowQueue.Peek Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the object at the beginning of the WorkflowQueue without removing it.
public:
System::Object ^ Peek();
public object Peek ();
member this.Peek : unit -> obj
Public Function Peek () As Object
Returns
The object at the beginning of the WorkflowQueue.
Exceptions
The WorkflowQueue is empty.
Remarks
This method is similar to the Dequeue method, but Peek does not modify the WorkflowQueue. You can check Count to determine whether the WorkflowQueue is empty before you call Dequeue, or you can catch the InvalidOperationException.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET