mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
30 lines
585 B
C#
30 lines
585 B
C#
using Microsoft.Win32;
|
|||
|
|
|
||
|
|
namespace Microsoft.Zune.Configuration
|
||
|
|
{
|
||
|
|
public class MessagingUserGuidConfiguration : CConfigurationManagedBase
|
||
|
|
{
|
||
|
|
public int CartItemsToUploadCount
|
||
|
|
{
|
||
|
|
get
|
||
|
|
{
|
||
|
|
return GetIntProperty("CartItemsToUploadCount", -1);
|
||
|
|
}
|
||
|
|
set
|
||
|
|
{
|
||
|
|
SetIntProperty("CartItemsToUploadCount", value);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
internal MessagingUserGuidConfiguration(RegistryHive hive)
|
||
|
|
: base(hive, null, "MessagingUserGuid")
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
public MessagingUserGuidConfiguration(RegistryHive hive, string basePath, string instance)
|
||
|
|
: base(hive, basePath, instance)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|