حدود یک هفته پیش, 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):
تابع | شرح (اگر همان عملکرد خالص) |
تعداد نوشته های() | 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