Cosmos/source/Indy.IL2CPU.IL/Attributes/PlugMethodAttribute.cs
2007-11-19 14:57:23 +00:00

15 lines
No EOL
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL {
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public sealed class PlugMethodAttribute: Attribute {
public string Signature = null;
public PlugScopeEnum Scope = PlugScopeEnum.All;
public const string ScopePropertyName = "Scope";
public const string SignaturePropertyName = "Signature";
}
}