We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0bbeb0 commit c3cb344Copy full SHA for c3cb344
Snowflake.Data/Client/SnowflakeDbDataReader.cs
@@ -256,7 +256,7 @@ public override int GetValues(object[] values)
256
return count;
257
}
258
259
- public T GetObject<T>(int ordinal)
+ internal T GetObject<T>(int ordinal)
260
where T : class, new()
261
{
262
try
@@ -279,7 +279,7 @@ public T GetObject<T>(int ordinal)
279
280
281
282
- public T[] GetArray<T>(int ordinal)
+ internal T[] GetArray<T>(int ordinal)
283
284
285
@@ -302,7 +302,7 @@ public T[] GetArray<T>(int ordinal)
302
303
304
305
- public Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
+ internal Dictionary<TKey, TValue> GetMap<TKey, TValue>(int ordinal)
306
307
308
0 commit comments