1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase.Metadata
- {
-
-
-
- #if !SILVERLIGHT
- [Serializable]
- #endif
- [AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
- public class StatusInfoAttribute : Attribute
- {
-
-
-
- public StatusInfoAttribute()
- {
- OutputInPerfLog = true;
- }
-
-
-
-
- public StatusInfoAttribute(string key)
- : this()
- {
- Key = key;
- }
-
-
-
-
-
-
- public string Key { get; set; }
-
-
-
-
-
-
- public string Name { get; set; }
-
-
-
-
-
-
- public string ShortName { get; set; }
-
-
-
-
-
-
- public string Format { get; set; }
-
-
-
-
-
-
- public int Order { get; set; }
-
-
-
-
-
-
- public bool OutputInPerfLog { get; set; }
-
-
-
-
-
-
- public Type DataType { get; set; }
- }
- }
|