Supporting empty string as parameter of RaisePropertyChanging and RaisePropertyChanged in Win8

This commit is contained in:
Laurent Bugnion 2013-09-23 13:54:48 +02:00
Родитель d2651f1aff
Коммит e1478ab596
1 изменённых файлов: 0 добавлений и 12 удалений

Просмотреть файл

@ -139,15 +139,6 @@ namespace GalaSoft.MvvmLight
string propertyName)
#endif
{
#if NETFX_CORE
if (string.IsNullOrEmpty(propertyName))
{
throw new NotSupportedException(
"Raising the PropertyChanged event with an empty string or null is not supported in Windows 8");
}
else
{
#endif
VerifyPropertyName(propertyName);
var handler = PropertyChanging;
@ -155,9 +146,6 @@ namespace GalaSoft.MvvmLight
{
handler(this, new PropertyChangingEventArgs(propertyName));
}
#if NETFX_CORE
}
#endif
}
#if CMNATTR