共用方式為


DataPackagePropertySet.Insert(String, Object) 方法

定義

將屬性加入 DataPackagePropertySet 物件。

public:
 virtual bool Insert(Platform::String ^ key, Platform::Object ^ value) = IMap<Platform::String ^, Platform::Object ^>::Insert;
bool Insert(winrt::hstring const& key, IInspectable const& value);
public bool Insert(string key, object value);
function insert(key, value)
Public Function Insert (key As String, value As Object) As Boolean

參數

key
String

Platform::String

winrt::hstring

要插入的索引鍵。

value
Object

Platform::Object

IInspectable

要插入的值。

傳回

Boolean

bool

如果方法已取代索引鍵已存在的值,則為 True;如果這是新的索引鍵,則為 false。

實作

備註

如果您的 app 需要將自訂屬性新增至 DataPackagePropertySet 物件,請使用這個方法。 自訂屬性是您無法使用 物件現有屬性所定義的任何屬性。 例如, title 是物件直接支援的屬性,但如果您想要子標題屬性,則需要使用 Insert 來新增它。

如需詳細資訊,請參閱 IMapView (String、Object)

適用於