System.Security.Permissions.KeyContainerPermissionAttribute.EmptyEntry C# (CSharp) Method

EmptyEntry() private method

private EmptyEntry ( ) : bool
return bool
		private bool EmptyEntry () 
		{
			if (_containerName != null)
				return false;
			if (_spec != 0)
				return false;
			if (_store != null)
				return false;
			if (_providerName != null)
				return false;
			if (_type != 0)
				return false;
			return true;
		}
	}