IRemoteArgumentDictionaryEnumeratorContract.GetValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回当前 IRemoteArgumentDictionaryContract 项的值。
public:
System::AddIn::Contract::RemoteArgument GetValue();
public System.AddIn.Contract.RemoteArgument GetValue ();
abstract member GetValue : unit -> System.AddIn.Contract.RemoteArgument
Public Function GetValue () As RemoteArgument
返回
一个 RemoteArgument,其中包含当前 IRemoteArgumentDictionaryContract 项的值。
例外
IRemoteArgumentDictionaryEnumeratorContract 定位于 IRemoteArgumentDictionaryContract 的第一项之前或最后一项之后。
注解
创建枚举器后或调用 方法后 Reset , MoveNext 必须调用 方法,以在调用 GetValue 方法之前将枚举器推进到集合的第一个元素;否则, 的 GetValue 返回值未定义。
GetValue 如果最后一次调用 MoveNext 返回 , false
则也会引发异常,这指示集合的末尾。
GetValue不会移动枚举器的位置,在调用 或 Reset 之前MoveNext返回同一对象的连续调用GetValue。