Supports custom formatting of item properties stored in SimpleDB.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public class CustomFormatAttribute : SimolFormatAttribute
Visual Basic
Public Class CustomFormatAttribute _
	Inherits SimolFormatAttribute
Visual C++
public ref class CustomFormatAttribute : public SimolFormatAttribute

Remarks

Mark properties with this attribute to force the use of a custom format string or ITypeFormatter during property formatting and conversion. Use of the custom format string requires that the property type implement IFormattableand the resulting string must be convertible back to the property type using ChangeType(Object, Type).

Inheritance Hierarchy

System..::..Object
  System..::..Attribute
    Simol..::..SimolAttribute
      Simol..::..SimolFormatAttribute
        Simol..::..CustomFormatAttribute

See Also