28 lines
838 B
C#
28 lines
838 B
C#
|
//---------------------------------------------------------------------
|
|||
|
// <copyright file="EntityDataSourceContextCreatingEventArgs.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.Data.Objects;
|
|||
|
|
|||
|
namespace System.Web.UI.WebControls
|
|||
|
{
|
|||
|
public class EntityDataSourceContextCreatingEventArgs : EventArgs
|
|||
|
{
|
|||
|
private ObjectContext _context;
|
|||
|
internal EntityDataSourceContextCreatingEventArgs() { }
|
|||
|
public ObjectContext Context
|
|||
|
{
|
|||
|
get { return _context; }
|
|||
|
set { _context = value; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|