azure - Webjobs sdk rest -


i see azure made webjobs sdk .net plaform , ability notified when new objects appear in blob/queue.

i've googled lot , wasn't able find specific function in blob api, , since webjobs sdk .net i'm unable use it.

is possible rest calls, or .net function only?

the sdk alpha, has support .net. blob monitoring code writing in c# making regular rest apis storage. use sdk blob listening service , have make web requests when new blobs detected, ie:

// helper convert blob inputs web requests public static void listenforblobs(     [blobinput(@"container/{name}")] stream inputstream,     string name // captured [blobinput]     ) {     // make web request (or other notification) notifying container/name availabe.  } 

Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -