Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs b/mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs
index 4adfd7dcdaf..d17f7a7f8ea 100644
--- a/mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs
+++ b/mcs/class/System.Data/System.Data.Sql/SqlNotificationRequest.cs
@@ -35,12 +35,12 @@
using System;
namespace System.Data.Sql {
- public sealed class SqlNotificationRequest
+ public class SqlNotificationRequest
{
#region Fields
- string userData;
- string options;
+ string id;
+ string service;
int timeout;
#endregion // Fields
@@ -54,15 +54,15 @@ namespace System.Data.Sql {
}
[MonoTODO]
- public SqlNotificationRequest (string userData, string options, int timeout)
+ public SqlNotificationRequest (string id, string service, int timeout)
{
- if (options == null)
+ if (service == null)
throw new ArgumentNullException ();
if (timeout < 0)
throw new ArgumentOutOfRangeException ();
- UserData = userData;
- Options = options;
+ Id = id;
+ Service = service;
Timeout = timeout;
}
@@ -70,14 +70,14 @@ namespace System.Data.Sql {
#region Properties
- public string UserData {
- get { return userData; }
- set { userData = value; }
+ public string Id {
+ get { return id; }
+ set { id = value; }
}
- public string Options {
- get { return options; }
- set { options = value; }
+ public string Service {
+ get { return service; }
+ set { service = value; }
}
public int Timeout {