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