forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContractStubs.cs
More file actions
43 lines (36 loc) · 909 Bytes
/
ContractStubs.cs
File metadata and controls
43 lines (36 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
#if IOS || PORTABLE
namespace ReactiveUI
{
public class PropertyChangingEventArgs : EventArgs
{
public PropertyChangingEventArgs(string PropertyName)
{
this.PropertyName = PropertyName;
}
public string PropertyName { get; protected set; }
}
public delegate void PropertyChangingEventHandler(
Object sender,
PropertyChangingEventArgs e
);
public interface INotifyPropertyChanging
{
event PropertyChangingEventHandler PropertyChanging;
}
}
#endif
#if PORTABLE
namespace ReactiveUI
{
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
public sealed class LocalizableAttribute : Attribute
{
// This is a positional argument
public LocalizableAttribute(bool isLocalizable)
{
}
}
}
#endif
// vim: tw=120 ts=4 sw=4 et :