diff options
Diffstat (limited to 'lang/csharp/src/BTreeStats.cs')
-rw-r--r-- | lang/csharp/src/BTreeStats.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/csharp/src/BTreeStats.cs b/lang/csharp/src/BTreeStats.cs index 6abef2b5..9d1f50ad 100644 --- a/lang/csharp/src/BTreeStats.cs +++ b/lang/csharp/src/BTreeStats.cs @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 2009, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved. * */ using System; @@ -67,6 +67,10 @@ namespace BerkeleyDB { /// </summary> public uint MinKey { get { return st.bt_minkey; } } /// <summary> + /// Number of blob records. + /// </summary> + public uint nBlobRecords { get { return st.bt_nblobs; } } + /// <summary> /// Number of data items. /// </summary> public uint nData { get { return st.bt_ndata; } } |