IVsSettingsStore.GetUnsignedInt(String, String, UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回无符号整数属性值。
public:
int GetUnsignedInt(System::String ^ collectionPath, System::String ^ propertyName, [Runtime::InteropServices::Out] System::UInt32 % value);
int GetUnsignedInt(std::wstring const & collectionPath, std::wstring const & propertyName, [Runtime::InteropServices::Out] unsigned int & value);
public int GetUnsignedInt (string collectionPath, string propertyName, out uint value);
abstract member GetUnsignedInt : string * string * -> int
Public Function GetUnsignedInt (collectionPath As String, propertyName As String, ByRef value As UInteger) As Integer
参数
- collectionPath
- String
中集合的路径。
- propertyName
- String
中属性的名称。
- value
- UInt32
弄值。
返回
如果 S_OK 返回属性,则返回; 如果属性不存在,则返回; S_FALSE Microsoft.VisualStudio.E_INVALIDARG 如果属性类型不是无符号整数,则返回。