Server.Network.FeatureProtection.SetDisabled C# (CSharp) Méthode

SetDisabled() public static méthode

public static SetDisabled ( ThirdPartyFeature feature, bool value ) : void
feature ThirdPartyFeature
value bool
Résultat void
		public static void SetDisabled( ThirdPartyFeature feature, bool value )
		{
			if ( value )
				m_Disabled |= feature;
			else
				m_Disabled &= ~feature;
		}
	}