public bool LazyUrlCreation { get; set; }
Public Property LazyUrlCreation As Boolean
Get
Set
public:
property bool LazyUrlCreation {
bool get ();
void set (bool value);
}
member LazyUrlCreation : bool with get, set
This is useful when the URL element is badly formatted and thus the parser will reject the record, setting this property to true will allow the parse to complete without attempting to decode the URL value.
When true the value is stored as a array of bytes, when false it is stored as a String; however in earlier versions it was stored as Uri, and since there was often invalid content on devices (e.g. iPhone) this often failed.