8 instantiations of ConnectionOptions
System.Management (4)
managementoptions.cs (3)
1636return new ConnectionOptions (locale, username, GetSecurePassword (), 1682optionsTmp = new ConnectionOptions(options.Context, options.Timeout, options.Flags); 1706optionsTmp = new ConnectionOptions();
managementscope.cs (1)
1122threadParam.Options = new ConnectionOptions();
WsatConfig (2)
Configuration\RemoteHelper.cs (1)
32ConnectionOptions co = new ConnectionOptions();
Configuration\StdRegProviderWrapper.cs (1)
89co = new ConnectionOptions();
WsatUI (2)
Configuration\RemoteHelper.cs (1)
32ConnectionOptions co = new ConnectionOptions();
Configuration\StdRegProviderWrapper.cs (1)
89co = new ConnectionOptions();
29 references to ConnectionOptions
System.Management (25)
managementoptions.cs (10)
1527/// <para>Initializes a new instance of the <see cref='System.Management.ConnectionOptions'/> class.</para> 1530/// <para>Initializes a new instance of the <see cref='System.Management.ConnectionOptions'/> class for the connection operation, using default values. This is the 1541/// <para> Initializes a new instance of the <see cref='System.Management.ConnectionOptions'/> class to be used for a WMI 1585/// <para> Initializes a new instance of the <see cref='System.Management.ConnectionOptions'/> class to be used for a WMI 1671internal static ConnectionOptions _Clone(ConnectionOptions options) 1673return ConnectionOptions._Clone(options, null); 1676internal static ConnectionOptions _Clone(ConnectionOptions options, IdentifierChangedEventHandler handler) 1678ConnectionOptions optionsTmp;
managementscope.cs (15)
616private ConnectionOptions options; 736ConnectionOptions options) 797scopeTmp.options = ConnectionOptions._Clone(scope.options, new IdentifierChangedEventHandler(scopeTmp.HandleIdentifierChange)); 844public ManagementScope (ManagementPath path) : this(path, (ConnectionOptions)null) {} 857public ManagementScope (string path) : this(new ManagementPath(path), (ConnectionOptions)null) {} 863/// <param name=' options'>A <see cref='System.Management.ConnectionOptions'/> containing options for the connection.</param> 876public ManagementScope (string path, ConnectionOptions options) : this (new ManagementPath(path), options) {} 883/// <param name=' options'>The <see cref='System.Management.ConnectionOptions'/> containing options for the connection.</param> 900public ManagementScope (ManagementPath path, ConnectionOptions options) 909this.options = ConnectionOptions._Clone(options, new IdentifierChangedEventHandler(HandleIdentifierChange)); 921/// <para>The valid <see cref='System.Management.ConnectionOptions'/> 940public ConnectionOptions Options 945return options = ConnectionOptions._Clone(null, new IdentifierChangedEventHandler(HandleIdentifierChange)); 956options = ConnectionOptions._Clone((ConnectionOptions)value, new IdentifierChangedEventHandler(HandleIdentifierChange));
WsatConfig (2)
Configuration\RemoteHelper.cs (1)
32ConnectionOptions co = new ConnectionOptions();
Configuration\StdRegProviderWrapper.cs (1)
81ConnectionOptions co = null;
WsatUI (2)
Configuration\RemoteHelper.cs (1)
32ConnectionOptions co = new ConnectionOptions();
Configuration\StdRegProviderWrapper.cs (1)
81ConnectionOptions co = null;