|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.CodeDom
{
using System.Diagnostics;
using System;
using Microsoft.Win32;
using System.Collections;
using System.Runtime.InteropServices;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[
// ClassInterface(ClassInterfaceType.AutoDispatch),
ComVisible(true),
// Serializable,
]
public class CodeEventReferenceExpression : CodeExpression
{
private CodeExpression _targetObject;
private string _eventName;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeEventReferenceExpression()
{
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeEventReferenceExpression(CodeExpression targetObject, string eventName)
{
_targetObject = targetObject;
_eventName = eventName;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public CodeExpression TargetObject
{
get
{
return _targetObject;
}
set
{
_targetObject = value;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string EventName
{
get
{
return (_eventName == null) ? string.Empty : _eventName;
}
set
{
_eventName = value;
}
}
}
}
|