3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
17 lines
500 B
C#
17 lines
500 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IResourceUrlGenerator.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Web.UI {
|
|
|
|
public interface IResourceUrlGenerator {
|
|
|
|
|
|
/// <devdoc>
|
|
/// </devdoc>
|
|
string GetResourceUrl(Type type, string resourceName);
|
|
}
|
|
}
|