IAdmExchangeEnableLitigationHoldParams

The IAdmExchangeEnableLitigationHoldParams interface specifies parameters to be used when enabling the Litigation Hold mailbox feature.

Inheritance: IUnknown

To create a new instance of the IAdmExchangeEnableLitigationHoldParams interface, you need to call the default constructor of the AdmExchangeEnableLitigationHoldParams class that implements the interface.

 How
PowerShell
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")

$litigationHoldParams = New-Object `
    "Softerra.Adaxes.Adsi.Exchange.AdmExchangeEnableLitigationHoldParams"
C#
using Softerra.Adaxes.Interop.Adsi;
using Softerra.Adaxes.Adsi;
using Softerra.Adaxes.Interop.Adsi.Exchange;
using Softerra.Adaxes.Interop.Adsi.PersistentObjects;
class Program
{
    static void Main(string[] args)
    {
        AdmExchangeEnableLitigationHoldParams litigationHoldParams =
            new AdmExchangeEnableLitigationHoldParams();
    }
}

Properties

  • Property

  • Description

  • Comment

  • Gets or sets a litigation hold note.

  • Url

  • Gets or sets a litigation hold URL.

Details

Comment

Gets or sets a litigation hold note.

  • Type:
  • string
  • Access:
  • Read/Write

Url

Gets or sets a litigation hold URL.

  • Type:
  • string
  • Access:
  • Read/Write

Requirements

Minimum required version: 2013.1

See also