![]() | Base |
public abstract class BaseProcessor : ISettingsProcessor
The BaseProcessor type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | DecodeBoolFromInt | A helper method for processors that need to decode bool from int. |
![]() ![]() | DecodeBufferFromBinhex | A helper method for processors that need to decode buffers from binhex strings. |
![]() ![]() | DecodeDateTime | A helper method that decodes a DateTime from a string encoded by EncodeDateTime(NullableDateTime). |
![]() ![]() | DecodeDateTimeOffset | A helper method that decodes a DateTimeOffset from a string encoded by EncodeDateTimeOffset(NullableDateTimeOffset). |
![]() ![]() | EncodeBoolToInt | A helper method for processors that need to encode bool to int. |
![]() ![]() | EncodeBufferToBinhex | A helper method for processors that need to encode buffers to binhex strings |
![]() ![]() | EncodeDateTime | A helper method that encodes a DateTime in a completely neutral rout-trippable custom format. |
![]() ![]() | EncodeDateTimeOffset | A helper method that encodes a DateTimeOffset in a completely neutral rout-trippable custom format. |
![]() ![]() | FromSafeStringArray | A helper method that reverses the encoding of a string array performed by ToSafeStringArray(String). Currently only used by the Registry processor. |
![]() ![]() | MultiStringJoin | A helper method that joins a string array into a single string using a reserved delimiter character and nulls replaced by a token placeholder string. Reverse processing is done by MultiStringSplit(String). Currently only used by the Azure Table processor. |
![]() ![]() | MultiStringSplit | A helper method that splits a single string into a string array. Reverse processing is done by MultiStringJoin(String). Currently only used by the Azure Table processor. |
![]() ![]() | ToSafeStringArray | A helper method that encodes items of a string array with nulls replaced by a token placeholder string. Currently only used by the Registry processor. |