示例#1
0
 public static T getContextValue <T>(this EnlistmentNotificationBase enlistmentNotificationBase)
 {
     return((T)enlistmentNotificationBase.getContextValue(typeof(T).FullName));
 }
示例#2
0
 public static void setContextValue <T>(this EnlistmentNotificationBase enlistmentNotificationBase, T value)
 {
     enlistmentNotificationBase.setContextValue(value.GetType().FullName, value);
 }