IActivityInput Interface
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Use the IActivityInput interface to design a specific input for an Activity.
public interface class IActivityInput
public interface IActivityInput
type IActivityInput = interface
Public Interface IActivityInput
public void Design(IActivityDesigner designer)
{
designer.AddInput("Host").WithComputerBrowser();
designer.AddInput("Port");
designer.AddInput("Use Default Credentials").WithBooleanBrowser();
designer.AddInput("UserName").NotRequired();
designer.AddInput("Password").NotRequired().PasswordProtect();
designer.AddInput("Delivery Method").WithEnumBrowser(typeof(DeliveryOptions));
}
Not |
Use this method to make the input optional. |
Password |
Use this method to encrypt the input and ensure that it is not displayed in plain text. |
With |
Use this method to include a boolean browser when displaying the input in the OIS client. |
With |
Use this method to include a computer browser when displaying the input in the OIS client. |
With |
Use this method to include a date/time browser when displaying the input in the OIS client. |
With |
Use this method to set a default value when initialing displaying the input in the OIS client. |
With |
Use this method to include a list browser with the specified enumeration. |
With |
Use this method to include a file browser when displaying the input in the OIS client. |
With |
Use this method to include a folder browser when displaying the input in the OIS client. |
With |
Use this method to include a list browser with the specified items. |
With |
Use this method to include a list browser with the specified items. |
With |
Produkt | Verzie |
---|---|
System Center Orch SDK | 2012, 2016 |