| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- namespace IwbZero.IocNamed
- {
- /// <summary>
- /// 指定IocNamed
- /// </summary>
- [AttributeUsage(AttributeTargets.Class)]
- public class IocNamedAttribute : Attribute
- {
- /// <summary>
- /// 名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 是否使用全类名
- /// </summary>
- public bool UseFullName { get; set; }
- public IocNamedAttribute()
- {
- }
- public IocNamedAttribute(string name = "", bool useFullName = false)
- {
- Name = name;
- UseFullName = useFullName;
- }
- public bool NameIsNotNull()
- {
- return !string.IsNullOrEmpty(Name);
- }
- }
- }
|