Skip to content
This repository has been archived by the owner on Apr 22, 2019. It is now read-only.

Commit

Permalink
Added more classes back.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed May 21, 2016
1 parent 57bad9d commit dd7bf11
Show file tree
Hide file tree
Showing 31 changed files with 1,652 additions and 11 deletions.
65 changes: 65 additions & 0 deletions SharpSnmpLib/Objects/IfAdminStatus.cs
@@ -0,0 +1,65 @@
// ifAdminStatusclass.
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

/*
* Created by SharpDevelop.
* User: Lex
* Date: 3/3/2013
* Time: 11:15 AM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/

using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifAdminStatus object.
/// </summary>
internal sealed class IfAdminStatus : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfAdminStatus"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfAdminStatus(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.7.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new Integer32((int)_networkInterface.OperationalStatus); }
set { throw new AccessFailureException(); }
}
}
}
65 changes: 65 additions & 0 deletions SharpSnmpLib/Objects/IfDescr.cs
@@ -0,0 +1,65 @@
// ifDescr class.
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

/*
* Created by SharpDevelop.
* User: Lex
* Date: 3/3/2013
* Time: 10:27 AM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/

using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifDescr object.
/// </summary>
internal sealed class IfDescr : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfDescr"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfDescr(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.2.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new OctetString(_networkInterface.Description); }
set { throw new AccessFailureException(); }
}
}
}
61 changes: 61 additions & 0 deletions SharpSnmpLib/Objects/IfInDiscards.cs
@@ -0,0 +1,61 @@
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifInDiscards object.
/// </summary>
internal sealed class IfInDiscards : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfInDiscards"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfInDiscards(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.13.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new Counter32(_networkInterface
#if net451
.GetIPv4Statistics()
#else
.GetIPStatistics()
#endif
.IncomingPacketsDiscarded); }
set { throw new AccessFailureException(); }
}
}
}
61 changes: 61 additions & 0 deletions SharpSnmpLib/Objects/IfInErrors.cs
@@ -0,0 +1,61 @@
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifInError object.
/// </summary>
internal sealed class IfInErrors : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfInErrors"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfInErrors(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.14.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new Counter32(_networkInterface
#if net451
.GetIPv4Statistics()
#else
.GetIPStatistics()
#endif
.IncomingPacketsWithErrors); }
set { throw new AccessFailureException(); }
}
}
}
61 changes: 61 additions & 0 deletions SharpSnmpLib/Objects/IfInNUcastPkts.cs
@@ -0,0 +1,61 @@
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifInNUcastPkts object.
/// </summary>
internal sealed class IfInNUcastPkts : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfInNUcastPkts"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfInNUcastPkts(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.12.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new Counter32(_networkInterface
#if net451
.GetIPv4Statistics()
#else
.GetIPStatistics()
#endif
.NonUnicastPacketsReceived); }
set { throw new AccessFailureException(); }
}
}
}
69 changes: 69 additions & 0 deletions SharpSnmpLib/Objects/IfInOctets.cs
@@ -0,0 +1,69 @@
// Copyright (C) 2013 Lex Li
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.

/*
* Created by SharpDevelop.
* User: Lex
* Date: 3/3/2013
* Time: 11:16 AM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System.Net.NetworkInformation;
using Lextm.SharpSnmpLib.Pipeline;

namespace Lextm.SharpSnmpLib.Objects
{
/// <summary>
/// ifInOctets object.
/// </summary>
internal sealed class IfInOctets : ScalarObject
{
private readonly NetworkInterface _networkInterface;

/// <summary>
/// Initializes a new instance of the <see cref="IfInOctets"/> class.
/// </summary>
/// <param name="index">The index.</param>
/// <param name="networkInterface">The network interface.</param>
public IfInOctets(int index, NetworkInterface networkInterface)
: base("1.3.6.1.2.1.2.2.1.10.{0}", index)
{
_networkInterface = networkInterface;
}

/// <summary>
/// Gets or sets the data.
/// </summary>
/// <value>
/// The data.
/// </value>
/// <exception cref="AccessFailureException"></exception>
public override ISnmpData Data
{
get { return new Counter32(_networkInterface
#if net451
.GetIPv4Statistics()
#else
.GetIPStatistics()
#endif
.BytesReceived); }
set { throw new AccessFailureException(); }
}
}
}

0 comments on commit dd7bf11

Please sign in to comment.