You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current constructor (string, string, object) assumes a Content Type of JSON. This leaves something to be desired. The next ctor assumes (string, string, string, string), which is also undesirable. A new constructor that looks like the following should be created
public RiakObject( string bucket, string key, object value, string contentType)
The text was updated successfully, but these errors were encountered:
@OJ has suggested RiakObject.CreateAsProtoBuf() and RiakObject.CreateAsJson() to wrap regular ctors so that RiakObject users don't need to mess around with a pile of constructors.
The current constructor (string, string, object) assumes a Content Type of JSON. This leaves something to be desired. The next ctor assumes (string, string, string, string), which is also undesirable. A new constructor that looks like the following should be created
The text was updated successfully, but these errors were encountered: