You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closes#1274 - Got rid of system.web (databinder.eval)
I have written a new implementation and to replace databinder.eval so that we can drop system.web as a dependency. System.Web should never have been adopted imho!
Corrected docs.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
8
-
9
-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
10
-
11
-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
12
-
13
-
* Neither the name of Clarius Consulting nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
14
-
15
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16
-
*/
17
-
18
-
#endregion
19
-
20
-
// Originally appeared in http://haacked.com/archive/2009/01/14/named-formats-redux.aspx
/// Formats the string with the given source object.
14
+
/// Formats a string template with the given source object.
38
15
/// Expression like {Id} are replaced with the corresponding
39
-
/// property value in the <paramref name="source" />. Supports
40
-
/// all DataBinder.Eval expressions formats
41
-
/// for property access.
42
-
/// </summary>
43
-
/// <nuget id="netfx-System.StringFormatWith" />
44
-
/// <param name="format" this="true">The string to format</param>
16
+
/// property value in the <paramref name="source" />.
17
+
/// Supports property access expressions.
18
+
/// </summary>
19
+
/// <param name="template" this="true">The template to be replaced with values from the source object. The template can contain expressions wrapped in curly braces, that point to properties or fields on the source object to be used as a substitute, e.g '{Foo.Bar.CurrencySymbol} foo {Foo.Bar.Price}'.</param>
45
20
/// <param name="source">The source object to apply to format</param>
0 commit comments