private static extern bool _GetConfigValueInfo(IntPtr self, NetConfig eValue, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8StringToNative))] string pOutName, ref NetConfigType pOutDataType, [In, Out] NetConfigScope[]  pOutScope, [In, Out] NetConfig[]  pOutNextValue);
 private static extern NetConfigResult _GetConfigValue(IntPtr self, NetConfig eValue, NetConfigScope eScopeType, IntPtr scopeObj, ref NetConfigType pOutDataType, IntPtr pResult, ref UIntPtr cbResult);
        internal NetConfigResult GetConfigValue(NetConfig eValue, NetConfigScope eScopeType, IntPtr scopeObj, ref NetConfigType pOutDataType, IntPtr pResult, ref UIntPtr cbResult)
        {
            var returnValue = _GetConfigValue(Self, eValue, eScopeType, scopeObj, ref pOutDataType, pResult, ref cbResult);

            return(returnValue);
        }
 private static extern bool _SetConfigValue(IntPtr self, NetConfig eValue, NetConfigScope eScopeType, IntPtr scopeObj, NetConfigType eDataType, IntPtr pArg);
        internal bool SetConfigValue(NetConfig eValue, NetConfigScope eScopeType, IntPtr scopeObj, NetConfigType eDataType, IntPtr pArg)
        {
            var returnValue = _SetConfigValue(Self, eValue, eScopeType, scopeObj, eDataType, pArg);

            return(returnValue);
        }
Beispiel #6
0
 internal NetConfigResult GetConfigValue(NetConfig eValue, NetScope eScopeType, long scopeObj, ref NetConfigType pOutDataType, IntPtr pResult, ref ulong cbResult)
 {
     return(_GetConfigValue(Self, eValue, eScopeType, scopeObj, ref pOutDataType, pResult, ref cbResult));
 }
Beispiel #7
0
 internal bool GetConfigValueInfo(NetConfig eValue, [In, Out] string[]  pOutName, ref NetConfigType pOutDataType, [In, Out] NetScope[]  pOutScope, [In, Out] NetConfig[]  pOutNextValue)
 {
     return(_GetConfigValueInfo(Self, eValue, pOutName, ref pOutDataType, pOutScope, pOutNextValue));
 }
        internal bool GetConfigValueInfo(NetConfig eValue, [MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8StringToNative))] string pOutName, ref NetConfigType pOutDataType, [In, Out] NetConfigScope[]  pOutScope, [In, Out] NetConfig[]  pOutNextValue)
        {
            var returnValue = _GetConfigValueInfo(Self, eValue, pOutName, ref pOutDataType, pOutScope, pOutNextValue);

            return(returnValue);
        }
Beispiel #9
0
 internal bool SetConfigValue(NetConfig eValue, NetScope eScopeType, long scopeObj, NetConfigType eDataType, IntPtr pArg)
 {
     return(_SetConfigValue(Self, eValue, eScopeType, scopeObj, eDataType, pArg));
 }
        internal bool GetConfigValueInfo(NetConfig eValue, [In][Out] string[] pOutName, ref NetConfigType pOutDataType, [In][Out] NetScope[] pOutScope, [In][Out] NetConfig[] pOutNextValue)
        {
            bool self = this._GetConfigValueInfo(this.Self, eValue, pOutName, ref pOutDataType, pOutScope, pOutNextValue);

            return(self);
        }
        internal NetConfigResult GetConfigValue(NetConfig eValue, NetScope eScopeType, long scopeObj, ref NetConfigType pOutDataType, IntPtr pResult, ref ulong cbResult)
        {
            NetConfigResult self = this._GetConfigValue(this.Self, eValue, eScopeType, scopeObj, ref pOutDataType, pResult, ref cbResult);

            return(self);
        }
        internal bool SetConfigValue(NetConfig eValue, NetScope eScopeType, long scopeObj, NetConfigType eDataType, IntPtr pArg)
        {
            bool self = this._SetConfigValue(this.Self, eValue, eScopeType, scopeObj, eDataType, pArg);

            return(self);
        }
Beispiel #13
0
        internal string GetConfigValueInfo(NetConfig eValue, ref NetConfigType pOutDataType, [In, Out] NetConfigScope[]  pOutScope)
        {
            var returnValue = _GetConfigValueInfo(Self, eValue, ref pOutDataType, pOutScope);

            return(returnValue);
        }
Beispiel #14
0
 private static extern Utf8StringPointer _GetConfigValueInfo(IntPtr self, NetConfig eValue, ref NetConfigType pOutDataType, [In, Out] NetConfigScope[]  pOutScope);