વિશે એક સપ્તાહ પહેલા, I started up a codeplex project that provides a simple and reasonably generic method for adding custom action functions to SharePoit Designer workflow. It’s described here: http://www.codeplex.com/spdwfextensions. Beyond simply providing a framework, it also aims to provide a set of useful functions that will make SPD more useful/flexible/powerful.
અહીં આવૃત્તિ માટે વર્તમાન આયોજિત લક્ષણો છે 1.0: https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=spdwfextensions&ReleaseId=8280
કોઈને પણ આ પ્રોજેક્ટમાં કોઈ રસ હોય તો, એક ટિપ્પણી મૂકો અથવા અહીં ચર્ચા ઉમેરો / શરૂ કરો: http://www.codeplex.com/spdwfextensions/Thread/List.aspx
અહીં કોડેડ કરવામાં આવી છે કે કાર્યો ચાલુ સમૂહ છે (સંપૂર્ણપણે તરીકે ચકાસાયેલ નથી છતાં 11/08/07):
કાર્ય | વર્ણન (તરીકે જ ન હોય તો. નેટ કાર્ય) |
NUM-પ્રવેશો() | Returns the number "entries" in a string as per a specified delimiter.
ઉદાહરણ તરીકે: Num-entries in a string "a,બોલ્ડ,કેચ:" with delimiter "," = 3. |
પ્રવેશ() | Returns the nth token in a string as per a specified delimiter. |
લંબાઈ | String.Length |
બદલવું() | String.Replace() |
પડે() | String.Contains() Returns the word "true" or the word "false". |
શબ્દમાળા(આરંભ) | String.Substring(આરંભ) |
શબ્દમાળા(આરંભ,અંત) | String.Substring(આરંભ,અંત) |
ToUpper() | String.ToUpper() |
ToLower() | String.ToLower() |
StartsWith() | String.StartsWith() Returns the word "true" or the word "false". |
EndsWith() | String.EndsWith() Returns the word "true" or the word "false". |
પહેલાં તરીકે ઉલ્લેખ કર્યો છે, હું હજુ પણ આ વિધેયોને પરીક્ષણ દ્રષ્ટિએ કોઇ પ્રયત્નો પૂરી રસ છું.
–Monjo