ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.Core.Rdl.Seralization.Common Namespace / Coders Class / SkipOnWrite<T> Method
The type to encode/decode.
The base coder.

In This Topic
    SkipOnWrite<T> Method
    In This Topic
    Used for legacy properties which can be read but must not be written.
    Syntax
    'Declaration
     
    Public Shared Function SkipOnWrite(Of T)( _
       ByVal coder As Coders.Coder(Of T) _
    ) As Coders.Coder(Of T)
    public static Coders.Coder<T> SkipOnWrite<T>( 
       Coders.Coder<T> coder
    )

    Parameters

    coder
    The base coder.

    Type Parameters

    T
    The type to encode/decode.

    Return Value

    A coder that skips writing.
    See Also