|
| EditorContentQuery (EditorContentQuery other) |
|
bool | AcceptValidation (ContentValidationStatus status) |
|
bool | AcceptStatus (ContentModificationStatus status) |
|
new string | ToString (string existing) |
|
override string | ToString () |
|
bool | EqualsEditorContentQuery (EditorContentQuery other) |
|
override bool | Equals (object obj) |
|
override int | GetHashCode () |
|
| ContentQuery (ContentQuery other) |
| The copy-constructor for a ContentQuery More...
|
|
virtual bool | Accept (IContentObject content) |
| Check if the given IContentObject meets the tag, type, and id constraints. Tags are AND based, so the content must have ALL tags in the TagConstraints field. Types are OR based, so the content type only needs to be one of the types specified in the TypeConstraints field. This check allows subtypes of types in the TypeConstraints to be accepted. The id constraint is a substring match, so as long as the content's id contains the DefaultQuery.IdContainsConstraint , the id constraint passes. More...
|
|
bool | AcceptTag (IContentObject content) |
| Check if the given IContentObject meets the tag constraint. Tags are AND based, so the content must have ALL tags in the TagConstraints field. More...
|
|
bool | AcceptTags (HashSet< string > tags) |
| Check if the given set of tags would meet the tag constraint. Tags are AND based, so the given set of tags must have ALL tags in the TagConstraints field. More...
|
|
bool | AcceptType< TContent > (bool allowInherit=true) |
| Check if the given generic content type passes the type constraint. Types are OR based, so the content type only needs to be one of the types specified in the TypeConstraints field. More...
|
|
bool | AcceptType (Type type, bool allowInherit=true) |
| Check if the given runtime type passes the type constraint Types are OR based, so the content type only needs to be one of the types specified in the TypeConstraints field. More...
|
|
bool | AcceptIdContains (IContentObject content) |
| Check if the given IContentObject content passes the id constraint. The id constraint is a substring match, so as long as the content's id contains the DefaultQuery.IdContainsConstraint , the id constraint passes. More...
|
|
bool | EqualsContentQuery (ContentQuery other) |
| Check if this ContentQuery would select the same content as the given ContentQuery. The equality match is based on set equality, not order equality. More...
|
|
override bool | Equals (object obj) |
| The equality operator. See EqualsContentQuery(ContentQuery) More...
|
|
override int | GetHashCode () |
| Get the hashcode for the ContentQuery More...
|
|
string | ToString (string existing) |
| Convert the ContentQuery back into a string format. This method will guarantee that the output string would serialize back into a ContentQuery that would be equal when checked with the EqualsContentQuery method. More...
|
|
override string | ToString () |
| Convert the ContentQuery back into a string format. This method will guarantee that the output string would serialize back into a ContentQuery that would be equal when checked with the EqualsContentQuery method. More...
|
|
bool | AcceptIdContains (string id) |
|