Example #1
0
 internal static extern ConfigurationValueResult SteamAPI_ISteamNetworkingUtils_GetConfigValue(IntPtr utils, ConfigurationValue configurationValue, ConfigurationScope configurationScope, IntPtr scopeObject, out ConfigurationDataType dataType, out IntPtr result, out IntPtr resultLength);
Example #2
0
 public ConfigurationValueResult GetConfigurationValue(ConfigurationValue configurationValue, ConfigurationScope configurationScope, IntPtr scopeObject, out ConfigurationDataType dataType, out IntPtr result, out IntPtr resultLength)
 {
     return(Native.SteamAPI_ISteamNetworkingUtils_GetConfigValue(nativeUtils, configurationValue, configurationScope, scopeObject, out dataType, out result, out resultLength));
 }
Example #3
0
 internal static extern bool SteamAPI_ISteamNetworkingUtils_SetConfigValue(IntPtr utils, ConfigurationValue configurationValue, ConfigurationScope configurationScope, IntPtr scopeObject, ConfigurationDataType dataType, IntPtr value);
 public ConfigurationDataException(ConfigurationDataType resourceType, string message, Exception innerException)
     : base(message, innerException)
 {
     ConfigurationDataType = resourceType;
 }
Example #5
0
 public bool SetConfiguratioValue(ConfigurationValue configurationValue, ConfigurationScope configurationScope, IntPtr scopeObject, ConfigurationDataType dataType, IntPtr value)
 {
     return(Native.SteamAPI_ISteamNetworkingUtils_SetConfigValue(nativeUtils, configurationValue, configurationScope, scopeObject, dataType, value));
 }
 public ConfigurationDataException(ConfigurationDataType resourceType)
 {
     ConfigurationDataType = resourceType;
 }
 /// <summary>
 /// Converts the <see cref="sourceValue" /> parameter to the <see cref="destinationType" /> parameter using <see cref="formatProvider"
 /// /> and <see cref="ignoreCase" />
 /// </summary>
 /// <param name="sourceValue">the <see cref="System.Object"/> to convert from</param>
 /// <param name="destinationType">the <see cref="System.Type" /> to convert to</param>
 /// <param name="formatProvider">not used by this TypeConverter.</param>
 /// <param name="ignoreCase">when set to <c>true</c>, will ignore the case when converting.</param>
 /// <returns>
 /// an instance of <see cref="ConfigurationDataType" />, or <c>null</c> if there is no suitable conversion.
 /// </returns>
 public override object ConvertFrom(object sourceValue, global::System.Type destinationType, global::System.IFormatProvider formatProvider, bool ignoreCase) => ConfigurationDataType.CreateFrom(sourceValue);
Example #8
0
 internal static extern bool SteamAPI_ISteamNetworkingUtils_GetConfigValueInfo(IntPtr utils, ConfigurationValue configurationValue, IntPtr outName, ConfigurationDataType dataType, ConfigurationScope configurationScope, ConfigurationValue outNextValue);
 public ConfigurationDataException(ConfigurationDataType resourceType, string message, Exception innerException)
   : base(message, innerException)
 {
   ConfigurationDataType = resourceType;
 }
 public ConfigurationDataException(ConfigurationDataType resourceType)
 {
   ConfigurationDataType = resourceType;
 }