PipelineBuffer.GetUInt32(Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重要
此 API 不符合 CLS。
它会将 UInt32 值存储在缓冲区列中。
public:
System::UInt32 GetUInt32(int columnIndex);
[System.CLSCompliant(false)]
public uint GetUInt32(int columnIndex);
[<System.CLSCompliant(false)>]
member this.GetUInt32 : int -> uint32
Public Function GetUInt32 (columnIndex As Integer) As UInteger
参数
- columnIndex
- Int32
缓冲区行中该列的索引。
返回
UInt32 值存储在缓冲区列中。
- 属性
注解
该方法适用于集成服务中的数据 DT_UI4 类型。
如果缓冲列DataType不是,则PipelineBuffer产生一个UnsupportedBufferDataTypeExceptionDT_UI4。
如果列的值为空,则 PipelineBuffer 产生一个 ColumnIsNullException。 你可以先调用 IsNull 该方法来检查空。
有关集成服务数据类型的完整列表以及该类中用于各类型的对应Get和Set方法PipelineBuffer,请参见“在数据流中与数据类型工作”。