Skip to content

Commit

Permalink
Ajout d’un getter pour savoir si Rollbar a était initialisé
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Binet committed Nov 24, 2016
1 parent 9521d3f commit 95a7324
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions RollbarDotNet/Rollbar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ public static IRollbar Current
}
set { _value = value; }
}

public static bool IsInitialized
{
get { return _value != null; }
}
}
}

0 comments on commit 95a7324

Please sign in to comment.