forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEntityDataSourceSelectingEventArgs.cs
More file actions
43 lines (38 loc) · 1.28 KB
/
EntityDataSourceSelectingEventArgs.cs
File metadata and controls
43 lines (38 loc) · 1.28 KB
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
//---------------------------------------------------------------------
// <copyright file="EntityDataSourceSelectingEventArgs.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//
// @owner [....]
// @backupOwner objsdev
//---------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.Objects;
using System.ComponentModel;
using System.Data.Metadata.Edm;
namespace System.Web.UI.WebControls
{
public class EntityDataSourceSelectingEventArgs : System.ComponentModel.CancelEventArgs
{
private readonly EntityDataSource _dataSource;
private readonly DataSourceSelectArguments _selectArguments;
internal EntityDataSourceSelectingEventArgs(EntityDataSource dataSource, DataSourceSelectArguments selectArgs)
{
_dataSource = dataSource;
_selectArguments = selectArgs;
}
public EntityDataSource DataSource
{
get { return _dataSource; }
}
public DataSourceSelectArguments SelectArguments
{
get { return _selectArguments; }
}
}
}