Opc.Ua.ServiceResult.IsNotBad C# (CSharp) Méthode

IsNotBad() public static méthode

Returns true if the status is good or uncertain.
public static IsNotBad ( ServiceResult status ) : bool
status ServiceResult
Résultat bool
		public static bool IsNotBad(ServiceResult status)
		{
			if (status != null)
			{
				return StatusCode.IsNotBad(status.m_code);
			}

			return true;
		}