536cd135cc
Former-commit-id: 5624ac747d633e885131e8349322922b6a59baaa
30 lines
878 B
C#
30 lines
878 B
C#
//---------------------------------------------------------------------
|
|
// <copyright file="EntityDataSourceContextCreatedEventArgs.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//
|
|
// @owner Microsoft
|
|
// @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 EntityDataSourceContextCreatedEventArgs : EventArgs
|
|
{
|
|
private readonly ObjectContext _context;
|
|
internal EntityDataSourceContextCreatedEventArgs(ObjectContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
public ObjectContext Context
|
|
{
|
|
get { return _context; }
|
|
}
|
|
}
|
|
}
|