Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

44 lines
1.3 KiB
C#

//---------------------------------------------------------------------
// <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; }
}
}
}