internal PostAuthAttribute(AuthTarg target, AuthOptions options, string nameMask)
 {
     this._target = target;
     if (!string.IsNullOrEmpty(nameMask))
     {
         this._options  = options | 4;
         this._nameMask = nameMask;
     }
     else
     {
         this._options  = options;
         this._nameMask = string.Empty;
     }
 }
Beispiel #2
0
 public PostAuthFetchParentOrChildAttribute(AuthTarg target, bool includeThisGameObject) : this(target, includeThisGameObject, null)
 {
 }
Beispiel #3
0
 public PostAuthFetchParentOrChildAttribute(AuthTarg target, string nameMask) : this(target, false, nameMask)
 {
 }
Beispiel #4
0
 private PostAuthFetchParentOrChildAttribute(AuthTarg target, bool includeThisGameObject, string nameMask) : base(target, !includeThisGameObject ? (AuthOptions.SearchReverse | AuthOptions.SearchUp | AuthOptions.SearchDown) : (AuthOptions.SearchReverse | AuthOptions.SearchInclusive | AuthOptions.SearchUp | AuthOptions.SearchDown), nameMask)
 {
 }
 public PostAuthFetchChildAttribute(AuthTarg target, bool includeThisGameObject)
     : this(target, includeThisGameObject, null)
 {
 }
 private PostAuthFetchChildAttribute(AuthTarg target, bool includeThisGameObject, string nameMask)
     : base(target, (!includeThisGameObject ? AuthOptions.SearchDown : AuthOptions.SearchDown | AuthOptions.SearchInclusive), nameMask)
 {
 }
 public PostAuthFetchChildAttribute(AuthTarg target, string nameMask)
     : this(target, false, nameMask)
 {
 }
Beispiel #8
0
 public PostAuthFetchAttribute(AuthTarg target, string nameMask) : base(target, 0, nameMask)
 {
 }
Beispiel #9
0
 public PostAuthFetchAttribute(AuthTarg target) : this(target, null)
 {
 }
	private PostAuthFetchChildAttribute(AuthTarg target, bool includeThisGameObject, string nameMask) : base(target, (!includeThisGameObject ? AuthOptions.SearchDown : AuthOptions.SearchDown | AuthOptions.SearchInclusive), nameMask)
	{
	}
 private PostAuthFetchParentAttribute(AuthTarg target, bool includeThisGameObject, string nameMask) : base(target, !includeThisGameObject ? AuthOptions.SearchUp : (AuthOptions.SearchInclusive | AuthOptions.SearchUp), nameMask)
 {
 }