e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
21 lines
814 B
C#
21 lines
814 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="ScriptDescriptor.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI {
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Web;
|
|
|
|
public abstract class ScriptDescriptor {
|
|
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
|
|
Justification = "Implementation will likely be too slow for a property")]
|
|
protected internal abstract string GetScript();
|
|
|
|
internal virtual void RegisterDisposeForDescriptor(ScriptManager scriptManager, Control owner) {
|
|
}
|
|
}
|
|
}
|