గురించి ఒక వారం క్రితం, 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". |
Substring(ప్రారంభించు) | String.Substring(ప్రారంభించు) |
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