6 writes to Server
System.Management (6)
managementbaseobject.cs (2)
466classPath.Server = String.Empty; 473classPath.Server = (string)(serverName is System.DBNull ? "" : serverName);
managementobject.cs (2)
718classPath.Server = String.Empty; 725classPath.Server = (string)(serverName is System.DBNull ? "" : serverName);
managementpath.cs (1)
559newPath.Server = this.Server;
WmiGenerator.cs (1)
566thePath.Server = OriginalServer;
9 references to Server
System.Management (9)
managementeventwatcher.cs (2)
650if((0==String.Compare(eventWatcher.Scope.Path.Server, ".", StringComparison.OrdinalIgnoreCase)) || 651(0==String.Compare(eventWatcher.Scope.Path.Server, System.Environment.MachineName, StringComparison.OrdinalIgnoreCase)))
managementpath.cs (2)
559newPath.Server = this.Server; 634String oldValue = Server;
wmieventsink.cs (4)
94if((0==String.Compare(this.path.Server, ".", StringComparison.OrdinalIgnoreCase)) || 95(0==String.Compare(this.path.Server, System.Environment.MachineName, StringComparison.OrdinalIgnoreCase))) 106if((0==String.Compare(this.scope.Path.Server, ".", StringComparison.OrdinalIgnoreCase)) || 107(0==String.Compare(this.scope.Path.Server, System.Environment.MachineName, StringComparison.OrdinalIgnoreCase)))
WmiGenerator.cs (1)
584OriginalServer = thePath.Server;