12 references to DontKnow
mscorlib (12)
system\security\permissionset.cs (4)
1798Contract.Assert( (token.m_type & PermissionTokenType.DontKnow) == 0, "We should always know the permission type when getting a token from an instance" ); 1906Contract.Assert( (token.m_type & PermissionTokenType.DontKnow) == 0, "We should always know the permission type when getting a token from an instance" ); 2040Contract.Assert( (token.m_type & PermissionTokenType.DontKnow) == 0, "We should know the permission type already" ); 2071Contract.Assert( (token.m_type & PermissionTokenType.DontKnow) == 0, "We should know the permission type already" );
system\security\permissiontoken.cs (7)
293Contract.Assert( (m_type & PermissionTokenType.DontKnow) == 0, "Should have valid token type when ToXml is called" ); 320Contract.Assert((this.m_type & PermissionTokenType.DontKnow) == 0, "Should have valid token type when FromXml is called."); 455if ((((PermissionToken)tok).m_type & PermissionTokenType.DontKnow) != 0) 498tok = new PermissionToken( m_index++, PermissionTokenType.DontKnow, typeStr ); 521PermissionTokenType permType = PermissionTokenType.DontKnow; 539if ((token.m_type & PermissionTokenType.DontKnow) != 0) 553token.m_type |= PermissionTokenType.DontKnow;
system\security\securityelement.cs (1)
845Contract.Assert((token.m_type & PermissionTokenType.DontKnow) == 0, "Token type not properly assigned");