VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
https://advblobimagestorage.blob.core.windows.net/images/0.jpgThanks
{
"files": null,
"success": false,
"blocked": false,
"errorMessage": "Unable to cast object of type 'System.String' to type 'System.IO.Stream'.\r\n",
"requestId": null
}
so this mean method should only response as file stream object So I cannot response base64 string of my block URL...
public bool CanStore(Type type)
{
// specify that data storage can work only with images, which are stored in Stream objects
if (typeof(Stream).IsAssignableFrom(type))
return true;
else
return false;
}
...
If you want to create custom data storage, please do this - architecture is open.