MultipartContent.GetEnumerator 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回列舉程式,逐一查看使用 multipart/* 內容類型規格進行序列化的 HttpContent 物件集合。
public:
virtual System::Collections::Generic::IEnumerator<System::Net::Http::HttpContent ^> ^ GetEnumerator();
public System.Collections.Generic.IEnumerator<System.Net.Http.HttpContent> GetEnumerator ();
abstract member GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Net.Http.HttpContent>
override this.GetEnumerator : unit -> System.Collections.Generic.IEnumerator<System.Net.Http.HttpContent>
Public Function GetEnumerator () As IEnumerator(Of HttpContent)
傳回
可用於逐一查看集合的物件。
實作
備註
C# 語言的 foreach 陳述式 (Statement) (Visual Basic 中的 For Each) 會隱藏列舉值的複雜度。 因此,建議您使用 foreach,而不要直接操作列舉值。
列舉程式可以用來讀取集合中的資料,但是無法用來修改基礎集合。
一開始,列舉程式位在集合中的第一個項目之前。