MultipartContent.GetEnumerator 方法

定义

返回循环访问 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 语句(在 Visual Basic 中为 For Each)隐藏了枚举器的复杂性。 因此,建议使用 foreach,而不要直接操作枚举器。

枚举器可用于读取集合中的数据,但不能用于修改基础集合。

最初,枚举数定位在集合中第一个元素的前面。

适用于