SPKeyValuePairSerializationInfo.TryGetValue<T> 方法 (String, T, T)

从基于指定的类型和名称的SPKeyValuePairSerializationInfo存储中检索一个值。如果在存储中没有找到名称,则此方法返回指定的默认值。

命名空间:  Microsoft.SharePoint.Utilities
程序集:  Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)

语法

声明
Public Function TryGetValue(Of T) ( _
    name As String, _
    <OutAttribute> ByRef value As T, _
    defaultValue As T _
) As Boolean
用法
Dim instance As SPKeyValuePairSerializationInfo
Dim name As String
Dim value As T
Dim defaultValue As T
Dim returnValue As Boolean

returnValue = instance.TryGetValue(name, _
    value, defaultValue)
public bool TryGetValue<T>(
    string name,
    out T value,
    T defaultValue
)

类型参数

  • T
    要检索的值的类型。

参数

  • name
    类型:System.String

    与要检索的值关联的名称。

  • value
    类型:T

    如果存储区 ; 中找到具有指定的名称,关联的指定类型的对象否则为指定的默认值。

  • defaultValue
    类型:T

    如果指定的名称找不到存储区中返回默认值。

返回值

类型:System.Boolean
存储区中包含的值与指定的名称 ; 如果返回true否则,此方法返回false。

备注

如果name参数为 null,则将类型System.ArgumentNullException的异常。

另请参阅

引用

SPKeyValuePairSerializationInfo 类

SPKeyValuePairSerializationInfo 成员

TryGetValue 重载

Microsoft.SharePoint.Utilities 命名空间