SQLiteQueryBuilder.ProjectionGreylist Property

Definition

Gets the projection greylist for the query, as last configured by #setProjectionGreylist. -or- Sets a projection greylist of columns that will be allowed through, even when #setStrict(boolean) is enabled.

public virtual System.Collections.Generic.ICollection<Java.Util.Regex.Pattern>? ProjectionGreylist { [Android.Runtime.Register("getProjectionGreylist", "()Ljava/util/Collection;", "GetGetProjectionGreylistHandler", ApiSince=30)] get; [Android.Runtime.Register("setProjectionGreylist", "(Ljava/util/Collection;)V", "GetSetProjectionGreylist_Ljava_util_Collection_Handler", ApiSince=30)] set; }
[<get: Android.Runtime.Register("getProjectionGreylist", "()Ljava/util/Collection;", "GetGetProjectionGreylistHandler", ApiSince=30)>]
[<set: Android.Runtime.Register("setProjectionGreylist", "(Ljava/util/Collection;)V", "GetSetProjectionGreylist_Ljava_util_Collection_Handler", ApiSince=30)>]
member this.ProjectionGreylist : System.Collections.Generic.ICollection<Java.Util.Regex.Pattern> with get, set

Property Value

Attributes

Remarks

Property getter documentation:

Gets the projection greylist for the query, as last configured by #setProjectionGreylist.

Java documentation for android.database.sqlite.SQLiteQueryBuilder.getProjectionGreylist().

Property setter documentation:

Sets a projection greylist of columns that will be allowed through, even when #setStrict(boolean) is enabled. This provides a way for abusive custom columns like COUNT(*) to continue working.

Java documentation for android.database.sqlite.SQLiteQueryBuilder.setProjectionGreylist(java.util.Collection<java.util.regex.Pattern>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to