Advertisement
vilgelmbb

CanReadCard DV 5.x

Dec 17th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1.     public static CardData CanReadCard(UserSession session,Guid cardId)
  2.         {
  3.             CardData cd = null;
  4.             try
  5.             {
  6.                 cd = session.CardManager.GetCardData(cardId);
  7.             }
  8.             catch (Exception ex)
  9.             {
  10.                 return cd;
  11.             }
  12.             return cd;
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement