feat: Geutebruck GeViScope/GeViSoft Action Mapping System - MVP

This MVP release provides a complete full-stack solution for managing action mappings
in Geutebruck's GeViScope and GeViSoft video surveillance systems.

## Features

### Flutter Web Application (Port 8081)
- Modern, responsive UI for managing action mappings
- Action picker dialog with full parameter configuration
- Support for both GSC (GeViScope) and G-Core server actions
- Consistent UI for input and output actions with edit/delete capabilities
- Real-time action mapping creation, editing, and deletion
- Server categorization (GSC: prefix for GeViScope, G-Core: prefix for G-Core servers)

### FastAPI REST Backend (Port 8000)
- RESTful API for action mapping CRUD operations
- Action template service with comprehensive action catalog (247 actions)
- Server management (G-Core and GeViScope servers)
- Configuration tree reading and writing
- JWT authentication with role-based access control
- PostgreSQL database integration

### C# SDK Bridge (gRPC, Port 50051)
- Native integration with GeViSoft SDK (GeViProcAPINET_4_0.dll)
- Action mapping creation with correct binary format
- Support for GSC and G-Core action types
- Proper Camera parameter inclusion in action strings (fixes CrossSwitch bug)
- Action ID lookup table with server-specific action IDs
- Configuration reading/writing via SetupClient

## Bug Fixes
- **CrossSwitch Bug**: GSC and G-Core actions now correctly display camera/PTZ head parameters in GeViSet
- Action strings now include Camera parameter: `@ PanLeft (Comment: "", Camera: 101028)`
- Proper filter flags and VideoInput=0 for action mappings
- Correct action ID assignment (4198 for GSC, 9294 for G-Core PanLeft)

## Technical Stack
- **Frontend**: Flutter Web, Dart, Dio HTTP client
- **Backend**: Python FastAPI, PostgreSQL, Redis
- **SDK Bridge**: C# .NET 8.0, gRPC, GeViSoft SDK
- **Authentication**: JWT tokens
- **Configuration**: GeViSoft .set files (binary format)

## Credentials
- GeViSoft/GeViScope: username=sysadmin, password=masterkey
- Default admin: username=admin, password=admin123

## Deployment
All services run on localhost:
- Flutter Web: http://localhost:8081
- FastAPI: http://localhost:8000
- SDK Bridge gRPC: localhost:50051
- GeViServer: localhost (default port)

Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Administrator
2025-12-31 18:10:54 +01:00
commit 14893e62a5
4189 changed files with 1395076 additions and 0 deletions

View File

@@ -0,0 +1,413 @@
# Action Mapping Implementation Guide
## Overview
This document describes the GeViSoft action mapping implementation, which provides automated response capabilities for the Geutebruck surveillance system. Action mappings allow you to trigger one or more actions based on an input action (e.g., route a camera to a monitor when motion is detected).
## Architecture
### Components
```
┌─────────────────────────────────────────────────────────────┐
│ Python FastAPI │
│ ┌─────────────┐ ┌──────────────┐ ┌──────────────────┐ │
│ │ Router │→ │ Service │→ │ Database Model │ │
│ │ (REST API) │ │ (Business) │ │ (PostgreSQL) │ │
│ └─────────────┘ └──────────────┘ └──────────────────┘ │
│ ↓ │
└─────────┼─────────────────────────────────────────────────────┘
│ gRPC
┌─────────────────────────────────────────────────────────────┐
│ C# SDK Bridge (gRPC Server) │
│ ┌────────────────────┐ ┌──────────────────────────┐ │
│ │ ActionMapping │ → │ GeViDatabaseWrapper │ │
│ │ Handler │ │ (GeViSoft Connection) │ │
│ └────────────────────┘ └──────────────────────────┘ │
│ ↓ │
└──────────────────────────────────────┼───────────────────────┘
│ SDK
┌──────────────────────┐
│ GeViServer │
│ (GeViSoft) │
└──────────────────────┘
```
### Data Flow
1. **Create/Update**: REST API → Database → SDK Bridge → GeViServer
2. **Execute**: GeViServer Event → SDK Bridge Callback → Execute Output Actions
3. **List/Query**: REST API → Database
## Implementation Details
### Backend (C# SDK Bridge)
#### Files Created/Modified
1. **Configuration**
- `appsettings.json` - Added GeViSoft connection settings
- `Program.cs` - Dual connection (GeViScope + GeViSoft)
2. **SDK Layer**
- `SDK/ActionMappingHandler.cs` - Core action mapping logic
- In-memory storage for MVP (database sync in production)
- Input action detection and output action execution
3. **gRPC Service**
- `Services/ActionMappingService.cs` - gRPC service implementation
- `Protos/actionmapping.proto` - Protocol buffer definitions
4. **Connection Management**
- Separate `GeViDatabaseWrapper` instances for GeViScope and GeViSoft
- Non-fatal GeViSoft connection (video ops work without it)
#### Key Classes
**ActionMappingHandler** (`SDK/ActionMappingHandler.cs`):
```csharp
public class ActionMappingHandler
{
public async Task<List<ActionMappingConfig>> EnumerateActionMappingsAsync(bool enabledOnly = false)
public async Task<ActionMappingConfig> CreateActionMappingAsync(...)
public async Task<ActionMappingConfig?> UpdateActionMappingAsync(...)
public async Task<bool> DeleteActionMappingAsync(string id)
public async Task<bool> ExecuteActionMappingAsync(string inputAction)
}
```
**ActionMappingConfig** (Data Model):
```csharp
public class ActionMappingConfig
{
public string Id { get; set; }
public string Name { get; set; }
public string InputAction { get; set; }
public List<string> OutputActions { get; set; }
public bool Enabled { get; set; }
public int ExecutionCount { get; set; }
public DateTime? LastExecuted { get; set; }
}
```
### Frontend (Python FastAPI)
#### Files Created
1. **Database Models**
- `models/action_mapping.py` - SQLAlchemy models
- `ActionMapping` - Main table
- `ActionMappingExecution` - Execution log for audit
2. **Schemas**
- `schemas/action_mapping.py` - Pydantic models
- `ActionMappingCreate` - Request for creating
- `ActionMappingUpdate` - Request for updating
- `ActionMappingResponse` - Response model
- `ActionMappingListResponse` - List response
3. **Service Layer**
- `services/action_mapping_service.py` - Business logic
- Database CRUD operations
- SDK Bridge synchronization (TODO)
4. **API Routes**
- `routers/action_mappings.py` - REST endpoints
- `GET /api/v1/action-mappings` - List all
- `GET /api/v1/action-mappings/{id}` - Get one
- `POST /api/v1/action-mappings` - Create
- `PUT /api/v1/action-mappings/{id}` - Update
- `DELETE /api/v1/action-mappings/{id}` - Delete
5. **Migrations**
- `migrations/versions/20251210_action_mappings.py` - Database schema
#### Database Schema
**action_mappings** table:
```sql
CREATE TABLE action_mappings (
id UUID PRIMARY KEY,
name VARCHAR(100) NOT NULL,
description TEXT,
input_action VARCHAR(500) NOT NULL,
output_actions VARCHAR[] NOT NULL,
geviscope_instance_scope VARCHAR(50),
enabled BOOLEAN NOT NULL DEFAULT true,
execution_count INTEGER NOT NULL DEFAULT 0,
last_executed TIMESTAMP WITH TIME ZONE,
created_at TIMESTAMP WITH TIME ZONE NOT NULL,
updated_at TIMESTAMP WITH TIME ZONE NOT NULL,
created_by UUID NOT NULL,
metadata_json JSONB
);
CREATE INDEX ix_action_mappings_input_action ON action_mappings(input_action);
CREATE INDEX ix_action_mappings_enabled ON action_mappings(enabled);
CREATE INDEX ix_action_mappings_instance_scope ON action_mappings(geviscope_instance_scope);
```
**action_mapping_executions** table:
```sql
CREATE TABLE action_mapping_executions (
id UUID PRIMARY KEY,
mapping_id UUID NOT NULL,
input_action VARCHAR(500) NOT NULL,
output_actions_executed VARCHAR[] NOT NULL,
success BOOLEAN NOT NULL,
error_message TEXT,
executed_at TIMESTAMP WITH TIME ZONE NOT NULL,
duration_ms INTEGER,
context_json JSONB
);
CREATE INDEX ix_action_mapping_executions_mapping_id ON action_mapping_executions(mapping_id);
CREATE INDEX ix_action_mapping_executions_executed_at ON action_mapping_executions(executed_at);
```
## API Usage Examples
### Create Action Mapping
```bash
curl -X POST http://localhost:8000/api/v1/action-mappings \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Motion Detection Alert",
"description": "Route camera to monitor when motion detected",
"input_action": "VMD_Start(101038)",
"output_actions": [
"CrossSwitch(101038, 1, 0)",
"SendMail(security@example.com, Motion Detected)"
],
"enabled": true
}'
```
### List Action Mappings
```bash
curl -X GET "http://localhost:8000/api/v1/action-mappings?enabled_only=true" \
-H "Authorization: Bearer $TOKEN"
```
### Update Action Mapping
```bash
curl -X PUT http://localhost:8000/api/v1/action-mappings/{id} \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"enabled": false,
"description": "Temporarily disabled"
}'
```
### Delete Action Mapping
```bash
curl -X DELETE http://localhost:8000/api/v1/action-mappings/{id} \
-H "Authorization: Bearer $TOKEN"
```
## Common Use Cases
### 1. Motion Detection → Camera Routing
**Scenario**: When motion is detected on a camera, route it to monitor 1
```json
{
"name": "VMD Auto-Route",
"input_action": "VMD_Start(101038)",
"output_actions": ["CrossSwitch(101038, 1, 0)"]
}
```
### 2. Door Contact → Alarm Response
**Scenario**: When door contact opens, flash beacon and send email
```json
{
"name": "Door Open Alert",
"input_action": "InputContact(3, false)",
"output_actions": [
"AlternateContact(2, 1000, 500)",
"SendMail(security@example.com, Door Opened)"
]
}
```
### 3. Alarm → Multi-Action Response
**Scenario**: When alarm triggers, route cameras, activate outputs, send notifications
```json
{
"name": "Intrusion Alarm Response",
"input_action": "AlarmStart(1)",
"output_actions": [
"CrossSwitch(5, 1, 0)",
"CrossSwitch(6, 2, 0)",
"OpenContact(10)",
"SendMail(security@example.com, ALARM: Intrusion Detected)",
"StartRecording(5)",
"StartRecording(6)"
]
}
```
## Testing
### Diagnostic Tools
1. **SDK Bridge Diagnostic** (`DiagnoseActionMapping.exe`):
```bash
cd C:\DEV\COPILOT\geutebruck-api\src\sdk-bridge\DiagnoseActionMapping
dotnet run -- localhost sysadmin password
```
2. **Python API Test** (`test_action_mappings.py`):
```bash
cd C:\DEV\COPILOT\geutebruck-api
python tools/test_action_mappings.py --url http://localhost:8000
```
### Manual Testing
1. **Start SDK Bridge**:
```bash
cd C:\DEV\COPILOT\geutebruck-api\src\sdk-bridge\GeViScopeBridge
dotnet run
```
2. **Run Database Migrations**:
```bash
cd C:\DEV\COPILOT\geutebruck-api\src\api
alembic upgrade head
```
3. **Start API Server**:
```bash
cd C:\DEV\COPILOT\geutebruck-api\src\api
python main.py
```
4. **Access Swagger UI**:
- Navigate to http://localhost:8000/docs
- Test endpoints interactively
## Security Considerations
### Authentication
- **Viewer Role**: Can list and view action mappings (read-only)
- **Operator Role**: Can list and view (no create/edit/delete)
- **Administrator Role**: Full CRUD permissions
### Validation
- Input action format validated
- At least one output action required
- Maximum length constraints on all fields
- SQL injection prevention via parameterized queries
### Audit Trail
All action mapping operations logged:
- Who created/updated/deleted
- When operation occurred
- IP address of requester
- Full change history
## Limitations & Future Enhancements
### Current MVP Limitations
1. **In-Memory Storage**: SDK Bridge stores mappings in memory, not GeViServer config
2. **No Callback Registration**: Input actions not automatically detected (would require event monitoring)
3. **No GeViSet Integration**: Cannot import/export from GeViSet application
4. **No Pattern Matching**: Input actions must match exactly (no wildcards)
### Planned Enhancements
1. **Direct GeViServer Integration**:
- Store mappings in GeViServer configuration database
- Use SetupClient API for configuration management
- Sync with GeViSet application
2. **Event Callback System**:
- Register SDK callbacks for input action detection
- Automatic execution of output actions
- Real-time processing
3. **Advanced Features**:
- Action patterns with wildcards (e.g., `VMD_Start(*)`)
- Conditional logic (if/then/else)
- Time-based enabling/disabling
- Action chaining and dependencies
4. **Monitoring & Analytics**:
- Real-time execution dashboard
- Performance metrics
- Failure rate tracking
- Execution history visualization
## Troubleshooting
### Connection Issues
**Problem**: SDK Bridge cannot connect to GeViSoft
**Solutions**:
1. Check GeViServer is running
2. Verify connection settings in `appsettings.json`
3. Check firewall rules
4. Review SDK Bridge logs: `logs/sdk-bridge-*.log`
### Database Issues
**Problem**: Migration fails or table not found
**Solutions**:
1. Run migrations: `alembic upgrade head`
2. Check database connection in `config.py`
3. Verify PostgreSQL is running
4. Check migration logs
### API Errors
**Problem**: 403 Forbidden when creating action mapping
**Solutions**:
1. Ensure user has Administrator role
2. Check JWT token is valid
3. Verify authentication middleware is working
**Problem**: 500 Internal Server Error
**Solutions**:
1. Check API logs: `logs/api-*.log`
2. Verify SDK Bridge is running
3. Check database connectivity
4. Review error details in response
## References
- [GeViSoft SDK Documentation](../../SOURCES/GeViSoft_SDK_Documentation_text/)
- [Data Model Specification](../../specs/001-surveillance-api/data-model.md)
- [API Specification](../../specs/001-surveillance-api/spec.md)
- [GeViScope SDK Full Documentation](../../SOURCES/GeViSoft_SDK_Documentation_text/GeViScope_SDK_full.txt)
## Support
For issues or questions:
1. Check this documentation
2. Review SDK Bridge logs
3. Test with diagnostic tools
4. Check GeViSoft SDK documentation
5. Contact Geutebruck support for SDK-specific issues

View File

@@ -0,0 +1,259 @@
# GeViScope Server Implementation Status
## Summary
A complete REST API structure for both G-Core and GeViScope servers has been designed and partially implemented. The new endpoint structure provides clean separation between server types.
---
## ✅ Completed
### 1. **Pydantic Schemas** (`src/api/schemas/servers.py`)
- `GCoreServerCreate/Update/Response` - Complete validation
- `GeViScopeServerCreate/Update/Response` - Complete with dial-up fields
- `AllServersResponse` - Combined listing
- `ServerOperationResponse` - Generic operation result
### 2. **REST API Endpoints** (`src/api/routers/configuration.py`)
**Parent Endpoint:**
- `GET /api/v1/configuration/servers` - List all servers (both types)
**G-Core Servers:**
- `GET /api/v1/configuration/servers/gcore` - List G-Core servers ✅
- `GET /api/v1/configuration/servers/gcore/{id}` - Get one ✅
- `POST /api/v1/configuration/servers/gcore` - Create ✅
- `PUT /api/v1/configuration/servers/gcore/{id}` - Update ✅
- `DELETE /api/v1/configuration/servers/gcore/{id}` - Delete ✅
**GeViScope Servers:**
- `GET /api/v1/configuration/servers/geviscope` - List GeViScope servers ✅
- `GET /api/v1/configuration/servers/geviscope/{id}` - Get one ✅
- `POST /api/v1/configuration/servers/geviscope` - Create ✅
- `PUT /api/v1/configuration/servers/geviscope/{id}` - Update ✅
- `DELETE /api/v1/configuration/servers/geviscope/{id}` - Delete ✅
### 3. **Service Layer** (`src/api/services/configuration_service.py`)
- `create_geviscope_server()`
- `update_geviscope_server()`
- `delete_geviscope_server()`
---
## ⚠️ Remaining Work
### 4. **SDK Bridge Client** (`src/api/clients/sdk_bridge_client.py`)
Need to add three methods:
```python
async def create_geviscope_server(self, server_data: dict) -> dict:
"""Create GeViScope server via gRPC"""
# Call gRPC CreateGeViScopeServerRequest
pass
async def update_geviscope_server(self, server_id: str, server_data: dict) -> dict:
"""Update GeViScope server via gRPC"""
# Call gRPC UpdateGeViScopeServerRequest
pass
async def delete_geviscope_server(self, server_id: str) -> dict:
"""Delete GeViScope server via gRPC"""
# Call gRPC DeleteGeViScopeServerRequest
pass
```
### 5. **Proto Definitions** (`src/sdk-bridge/Protos/configuration.proto`)
Need to add GeViScope-specific messages:
```protobuf
message CreateGeViScopeServerRequest {
string alias = 1;
string host = 2;
string user = 3;
string password = 4;
bool enabled = 5;
bool deactivate_echo = 6;
bool deactivate_live_check = 7;
// GeViScope-specific fields
bool dialup_broadcast_aware = 8;
bool dialup_connection = 9;
bool dialup_cpa_connection = 10;
int32 dialup_cpa_connection_interval = 11;
int32 dialup_cpa_time_settings = 12;
bool dialup_keep_alive = 13;
bool dialup_keep_alive_retrigger = 14;
int32 dialup_keep_alive_time = 15;
}
message UpdateGeViScopeServerRequest {
string server_id = 1;
// ... same fields as Create
}
message DeleteGeViScopeServerRequest {
string server_id = 1;
}
message GeViScopeServerOperationResponse {
bool success = 1;
string message = 2;
string server_id = 3;
string error_message = 4;
int32 bytes_written = 5;
}
// Add to ConfigurationService
service ConfigurationService {
// ... existing methods ...
rpc CreateGeViScopeServer(CreateGeViScopeServerRequest) returns (GeViScopeServerOperationResponse);
rpc UpdateGeViScopeServer(UpdateGeViScopeServerRequest) returns (GeViScopeServerOperationResponse);
rpc DeleteGeViScopeServer(DeleteGeViScopeServerRequest) returns (GeViScopeServerOperationResponse);
}
```
### 6. **C# SDK Bridge Implementation** (`Services/ConfigurationServiceImplementation.cs`)
Need to implement three gRPC methods:
```csharp
public override async Task<GeViScopeServerOperationResponse> CreateGeViScopeServer(
CreateGeViScopeServerRequest request,
ServerCallContext context)
{
// 1. Download configuration via SetupClient
// 2. Parse with FolderTreeParser
// 3. Navigate to GeViGscServer folder (NOT GeViGCoreServer!)
// 4. Find max numeric ID and increment
// 5. Create new server folder with ID
// 6. Add all fields (common + dial-up fields)
// 7. Write tree with FolderTreeWriter
// 8. Upload via SetupClient
// 9. Return response
}
public override async Task<GeViScopeServerOperationResponse> UpdateGeViScopeServer(
UpdateGeViScopeServerRequest request,
ServerCallContext context)
{
// Similar to Create but find existing server by ID first
}
public override async Task<GeViScopeServerOperationResponse> DeleteGeViScopeServer(
DeleteGeViScopeServerRequest request,
ServerCallContext context)
{
// Similar to G-Core delete but work with GeViGscServer folder
}
```
**Key Differences from G-Core Implementation:**
1. **Folder Name**: `GeViGscServer` instead of `GeViGCoreServer`
2. **Additional Fields**: Must handle all dial-up fields
3. **Global Settings**: GeViGscServer folder contains both servers AND global settings (DialUpCPADay0-6, FailoverActive, etc.). Must skip non-folder items when listing servers.
### 7. **Proto Code Generation**
After updating `.proto` files:
```bash
# Regenerate C# code
cd src/sdk-bridge/GeViScopeBridge
dotnet build -c Release
# Regenerate Python code
cd src/api
python -m grpc_tools.protoc -I../../src/sdk-bridge/Protos \
--python_out=./protos \
--grpc_python_out=./protos \
../../src/sdk-bridge/Protos/configuration.proto
# Fix imports (change absolute to relative)
# In configuration_pb2_grpc.py:
# from . import configuration_pb2 as configuration__pb2
```
---
## Testing Checklist
Once implementation is complete:
### GeViScope Server CRUD:
- [ ] Create GeViScope server with all dial-up fields
- [ ] List GeViScope servers (verify global settings are filtered out)
- [ ] Get single GeViScope server by ID
- [ ] Update GeViScope server (modify dial-up settings)
- [ ] Delete GeViScope server
- [ ] Verify changes persist after GeViServer restart
### Combined Listing:
- [ ] GET `/api/v1/configuration/servers` returns both types correctly
- [ ] Verify counts are accurate (total, total_gcore, total_geviscope)
### Edge Cases:
- [ ] Create server with duplicate ID (should fail)
- [ ] Update non-existent server (should 404)
- [ ] Delete non-existent server (should 404)
- [ ] Verify bool fields write as type code 1 (not 4)
- [ ] Test with enabled=true and enabled=false
---
## Current State
**What Works Now:**
- GET endpoints for listing GeViScope servers (read-only via ReadConfigurationTree)
- Full REST API structure is in place
- All Pydantic schemas with validation
- Proper error handling and logging
**What Doesn't Work Yet:**
- CREATE, UPDATE, DELETE for GeViScope servers
- These will fail with "Method not implemented" errors until C# backend is implemented
**Estimated Work Remaining:**
- Proto definitions: ~30 minutes
- C# implementation: ~2-3 hours (can reuse G-Core patterns)
- Testing: ~1 hour
- **Total: ~4 hours**
---
## Quick Start (After Full Implementation)
```bash
# List all servers (both types)
curl http://localhost:8000/api/v1/configuration/servers
# List only GeViScope servers
curl http://localhost:8000/api/v1/configuration/servers/geviscope
# Create GeViScope server
curl -X POST http://localhost:8000/api/v1/configuration/servers/geviscope \
-H "Content-Type: application/json" \
-d '{
"alias": "Local GeViScope",
"host": "localhost",
"user": "sysadmin",
"password": "password",
"enabled": true,
"deactivate_echo": false,
"deactivate_live_check": false,
"dialup_broadcast_aware": false,
"dialup_connection": false,
"dialup_cpa_connection": false,
"dialup_cpa_connection_interval": 3600,
"dialup_cpa_time_settings": 16777215,
"dialup_keep_alive": false,
"dialup_keep_alive_retrigger": false,
"dialup_keep_alive_time": 10
}'
```
---
**Last Updated**: 2025-12-17

View File

@@ -0,0 +1,105 @@
# GeViScope vs G-Core Server Configuration
## Storage Locations in TestMKS.set
- **G-Core Servers**: `GeViGCoreServer` folder
- **GeViScope Servers**: `GeViGscServer` folder
## Field Comparison
### Common Fields (Both Server Types)
| Field | Type | Description |
|-------|------|-------------|
| Alias | string | Server display name |
| Host | string | Server hostname or IP address |
| User | string | Username for authentication |
| Password | string | Password (appears to be hashed) |
| Enabled | bool | Whether server is enabled |
| DeactivateEcho | bool | Disable echo functionality |
| DeactivateLiveCheck | bool | Disable live connection checking |
### GeViScope-Only Fields
| Field | Type | Description |
|-------|------|-------------|
| DialUpBroadcastAware | bool | Dial-up broadcast awareness |
| DialUpConnection | bool | Use dial-up connection |
| DialUpCPAConnection | bool | CPA connection via dial-up |
| DialUpCPAConnectionInterval | int32 | CPA connection interval (seconds) |
| DialUpCPATimeSettings | int32 | CPA time settings bitmap |
| DialUpKeepAlive | bool | Keep dial-up connection alive |
| DialUpKeepAliveRetrigger | bool | Retrigger keep-alive |
| DialUpKeepAliveTime | int32 | Keep-alive time (seconds) |
### G-Core-Only Fields
None - G-Core servers only have the common fields.
## Example Configurations
### GeViScope Server (from test config)
```json
{
"id": "1",
"alias": "GEVISCOPE_01",
"host": "localhost",
"user": "sysadmin",
"password": "f5296f4dfae3f1c137e146b11e2480d8",
"enabled": false,
"deactivate_echo": false,
"deactivate_live_check": false,
"dialup_broadcast_aware": false,
"dialup_connection": false,
"dialup_cpa_connection": false,
"dialup_cpa_connection_interval": 3600,
"dialup_cpa_time_settings": 16777215,
"dialup_keep_alive": false,
"dialup_keep_alive_retrigger": false,
"dialup_keep_alive_time": 10
}
```
### G-Core Server (for comparison)
```json
{
"id": "1",
"alias": "gscope-cdu-3",
"host": "10.240.130.81",
"user": "sysadmin",
"password": "hashed_password",
"enabled": false,
"deactivate_echo": false,
"deactivate_live_check": false
}
```
## Global Settings in GeViGscServer Folder
The `GeViGscServer` folder also contains global dial-up settings (not per-server):
- `DialUpCPADay0` through `DialUpCPADay6` (int32): CPA settings for each day of week
- `DialUpCPAResponseWindow` (int32): CPA response window in milliseconds
- `DialUpCPAThreshold` (int32): CPA threshold percentage
- `DialUpLimitActionCount` (int32): Maximum action count
- `DialUpLimitTimeDepth` (int32): Time depth limit in seconds
- `DialUpWorkerThreads` (int32): Number of worker threads
- `FailoverActive` (bool): Whether failover is active
## REST API Implementation Plan
Need to implement similar CRUD endpoints for GeViScope servers:
- `GET /api/v1/configuration/geviscope-servers` - List all GeViScope servers
- `GET /api/v1/configuration/geviscope-servers/{id}` - Get specific server
- `POST /api/v1/configuration/geviscope-servers` - Create new server
- `PUT /api/v1/configuration/geviscope-servers/{id}` - Update server
- `DELETE /api/v1/configuration/geviscope-servers/{id}` - Delete server
Implementation will reuse the same patterns as G-Core servers but work with the `GeViGscServer` folder and additional dial-up fields.
---
**Last Updated**: 2025-12-17

View File

@@ -0,0 +1,214 @@
# Geutebruck API Architecture Documentation
This directory contains comprehensive architecture diagrams and documentation for the Geutebruck API system.
## 📊 Available Diagrams
### PlantUML Diagrams
1. **[architecture-overview.puml](architecture-overview.puml)** - Complete system architecture
- Shows all layers (Client, Python API, SDK Bridge, GeViServer)
- Component relationships and communication
- Port assignments and protocols
- Implemented features with status
2. **[architecture-sequence.puml](architecture-sequence.puml)** - Configuration management flow
- Detailed sequence diagram for creating a G-Core server
- Shows data flow through all layers
- Highlights critical implementation details
- Binary .set file parsing and writing flow
3. **[architecture-deployment.puml](architecture-deployment.puml)** - Deployment view
- Windows server deployment structure
- Process relationships (PIDs, ports)
- Service management scripts
- Startup order and dependencies
4. **[architecture-components.puml](architecture-components.puml)** - Component interactions
- Detailed component diagram
- Internal structure of each layer
- Data models and schemas
- gRPC protocol definitions
- Critical bug fixes documentation
### Text Diagram
- **[architecture-text.md](architecture-text.md)** - ASCII art architecture diagram
- Complete system overview in text format
- Service management details
- Implemented features checklist
## 🔧 How to View PlantUML Diagrams
### Option 1: VS Code (Recommended)
1. Install the **PlantUML** extension:
- Open VS Code
- Go to Extensions (Ctrl+Shift+X)
- Search for "PlantUML"
- Install "PlantUML" by jebbs
2. View diagrams:
- Open any `.puml` file
- Press `Alt+D` to preview
- Or right-click → "Preview Current Diagram"
### Option 2: Online Viewer
1. Visit [PlantUML Online Server](http://www.plantuml.com/plantuml/uml/)
2. Copy the content from any `.puml` file
3. Paste into the editor
4. View the rendered diagram
### Option 3: Export to Image
Using VS Code PlantUML extension:
- Right-click on `.puml` file
- Select "Export Current Diagram"
- Choose format: PNG, SVG, PDF
- Images will be saved in `out/` directory
### Option 4: Command Line (Java required)
```bash
# Install PlantUML
# Download plantuml.jar from https://plantuml.com/download
# Generate PNG
java -jar plantuml.jar architecture-overview.puml
# Generate SVG
java -jar plantuml.jar -tsvg architecture-overview.puml
# Generate all diagrams
java -jar plantuml.jar *.puml
```
## 📋 Diagram Contents
### architecture-overview.puml
Visualizes:
- **Client Layer**: Web browsers, GeViSet, mobile apps, testing tools
- **Python API Layer**: REST endpoints, services, gRPC client
- **C# SDK Bridge**: gRPC services, SDK wrappers, configuration handlers
- **GeViServer**: Camera/monitor management, action engine, binary config storage
- **Hardware Layer**: IP cameras, monitors, I/O devices
Key Notes:
- Configuration management implementation status ✅
- Data flow for .set file operations
- Current system state (13 servers, 64 mappings)
### architecture-sequence.puml
Step-by-step flow for creating a G-Core server:
1. Client sends REST request
2. FastAPI validates and forwards to SDK Bridge
3. SDK Bridge downloads current configuration
4. Parses binary .set file with FolderTreeParser
5. Auto-increments server ID
6. Creates new server node
7. Writes modified tree with FolderTreeWriter
8. Uploads to GeViServer
9. GeViServer saves and reloads configuration
10. Success response returned to client
Critical details documented:
- Bool type handling (type code 1 vs 4)
- Field ordering requirements
- SetupClient port exclusivity
### architecture-deployment.puml
Shows actual deployment on Windows Server:
- **GeViServer Process** (PID: 45612)
- Binary: GeViServer.exe console
- Location: C:\GEVISOFT
- Ports: 7700-7703
- **SDK Bridge Process** (PID: 48052)
- Binary: GeViScopeBridge.exe (.NET 8.0)
- Port: 50051 (gRPC)
- **Python API Process** (PID: 46212)
- Runtime: uvicorn + FastAPI
- Port: 8000 (HTTP)
- **PowerShell Scripts**: Service lifecycle management
### architecture-components.puml
Detailed component breakdown:
- **Python API Components**:
- Routers (auth, configuration ✅, cameras, monitors, crossswitch)
- Services layer
- gRPC client with proto definitions
- Pydantic schemas
- **C# SDK Bridge Components**:
- gRPC service implementations
- SDK wrappers (Database, SetupClient ✅, StateQuery)
- Configuration handlers (Parser ✅, Writer ✅)
- **Data Flow**:
- REST → Service → gRPC Client → gRPC Server → SDK → GeViServer
- Configuration download/parse/modify/serialize/upload cycle
## 🎯 Implementation Status
### ✅ Completed Features
1. **Configuration Management (User Story 12)**
- G-Core Server CRUD (CREATE, READ, DELETE working)
- Action Mapping CRUD (all operations working)
- SetupClient integration
- FolderTreeParser/Writer for binary .set files
- Cascade deletion prevention (delete in reverse order)
- Bool type handling for GeViSet compatibility
2. **Service Infrastructure**
- GeViServer startup with "console" argument
- SDK Bridge gRPC service
- Python FastAPI REST API
- Automated service management scripts
- Port monitoring and health checks
### ⚠️ Known Issues
1. **Server UPDATE Method**
- Error: "Server ID is required"
- Workaround: Delete and recreate
- Status: Documented, fix pending
2. **SetupClient Port Conflict**
- GeViSet and SDK Bridge cannot both connect
- Workaround: Stop SDK Bridge when using GeViSet
- Status: Design limitation
## 📚 Additional Documentation
- [SERVER_CRUD_IMPLEMENTATION.md](../SERVER_CRUD_IMPLEMENTATION.md) - Implementation guide
- [CRITICAL_BUG_FIX_DELETE.md](../CRITICAL_BUG_FIX_DELETE.md) - Cascade deletion bug analysis
- [specs/001-surveillance-api/](../specs/001-surveillance-api/) - Complete specifications
## 🔄 Updates
- **2025-12-16**: Added PlantUML diagrams for architecture visualization
- **2025-12-16**: Documented configuration management implementation
- **2025-12-16**: Fixed Python import errors in proto files
## 🤝 Contributing
When updating diagrams:
1. Edit the `.puml` source files
2. Regenerate images if needed
3. Update this README if adding new diagrams
4. Commit both source and generated images
## 📖 References
- [PlantUML Documentation](https://plantuml.com/)
- [PlantUML Component Diagrams](https://plantuml.com/component-diagram)
- [PlantUML Sequence Diagrams](https://plantuml.com/sequence-diagram)
- [PlantUML Deployment Diagrams](https://plantuml.com/deployment-diagram)

View File

@@ -0,0 +1,319 @@
# Troubleshooting: Empty Camera List
## Problem
```bash
curl http://localhost:8000/api/v1/cameras
# Returns: {"cameras": [], "total": 0}
```
## Understanding the Architecture
```
REST API
SDK Bridge (gRPC)
GeViSoft (GeViServer.exe) - Central video matrix
↓ MUST be connected to...
GeViScope (GSCServer.exe) - Storage server
↓ Which has...
IP Cameras (actual hardware)
```
**Key Point**: Cameras are connected to **GeViScope** (GSCServer.exe), not to GeViSoft (GeViServer.exe)!
## Root Cause
GeViSoft (GeViServer.exe) is **NOT connected** to your local GeViScope (GSCServer.exe), so it has no cameras to return.
## Diagnostic Steps
### Step 1: Verify Both Services Are Running
```powershell
Get-Process GeViServer,GSCServer
```
**Expected Output**:
```
ProcessName Id
----------- --
GeViServer 45612 ← GeViSoft (central matrix)
GSCServer 19220 ← GeViScope (storage server with cameras)
```
✅ Both should be running.
### Step 2: Check G-Core Server Configuration
G-Core servers are connection definitions in TestMKS.set that tell GeViSoft which GeViScope servers to connect to.
**Check current configuration**:
1. Stop SDK Bridge temporarily: `.\stop-services.ps1`
2. Open GeViSet (GeViSoft configuration tool)
3. Navigate to: **G-Core** or **GeViScope Servers** section
4. Look for entries pointing to GeViScope servers
**What you're looking for**:
- Entry with Host = `localhost` or `127.0.0.1`
- Entry must be **Enabled**
- Credentials must match GeViScope configuration
### Step 3: Is Local GeViScope in the Configuration?
**Option A: Via GeViSet (Recommended)**
1. Open GeViSet
2. Check G-Core server list
3. Look for server with:
- Host: `localhost` or `127.0.0.1`
- Enabled: ✅ Yes
**Option B: Via TestMKS.set (Advanced)**
```
C:\GEVISOFT\TestMKS.set
GeViGCoreServer/
Server_?/
Host: "localhost" ← Must exist and point to localhost
Enabled: true ← Must be enabled
User: "gevisoft" ← Credentials for GSCServer
Password: "..."
```
### Step 4: Add Localhost G-Core Server (If Missing)
If no G-Core server points to localhost, GeViSoft can't see your local GeViScope cameras.
**Fix via REST API**:
```bash
curl -X POST http://localhost:8000/api/v1/configuration/servers \
-H "Content-Type: application/json" \
-d '{
"alias": "Local GeViScope Storage",
"host": "localhost",
"user": "gevisoft",
"password": "your_password",
"enabled": true,
"deactivate_echo": false,
"deactivate_live_check": false
}'
```
**Fix via GeViSet**:
1. Open GeViSet
2. Go to G-Core Servers
3. Add New Server:
- Alias: "Local GeViScope"
- Host: localhost
- User: gevisoft (or appropriate user)
- Password: (GeViScope password)
- Enabled: ✅
4. Save configuration
5. Restart GeViServer: `.\restart-services.ps1`
### Step 5: Verify GeViScope Has Cameras
Even if GeViSoft connects to GeViScope, cameras won't appear unless GeViScope has cameras configured.
**Check GeViScope cameras**:
1. This depends on how your GeViScope is configured
2. Cameras are added to GeViScope via its own configuration
3. Check GeViScope documentation for camera management
**Typical GeViScope camera sources**:
- Direct IP cameras on local network
- Camera configuration files
- Auto-discovered cameras
### Step 6: Check Connection Status
After adding localhost G-Core server, verify connection:
**In GeViSet**:
- G-Core server entry should show **Connected** status
- If disconnected, check:
- GSCServer.exe is running
- Credentials are correct
- Port is not blocked
**In GeViServer logs**:
- Look for connection messages to localhost
- Check for authentication errors
## Common Scenarios
### Scenario 1: No G-Core Servers at All
```json
{
"servers": [],
"total": 0
}
```
**Solution**: Your TestMKS.set has NO G-Core servers. You need to add at least one pointing to your GeViScope.
### Scenario 2: G-Core Servers Exist But None Point to Localhost
```json
{
"servers": [
{"id": "1", "host": "192.168.1.100", ...},
{"id": "2", "host": "192.168.1.200", ...}
]
}
```
**Solution**: Add a server with `"host": "localhost"` to connect to your local GSCServer.exe.
### Scenario 3: Localhost G-Core Server Exists But Is Disabled
```json
{
"servers": [
{"id": "3", "host": "localhost", "enabled": false}
]
}
```
**Solution**: Enable the server:
```bash
curl -X PUT http://localhost:8000/api/v1/configuration/servers/3 \
-H "Content-Type: application/json" \
-d '{"enabled": true, ...}'
```
Or use GeViSet to enable it.
### Scenario 4: Connection Fails (Wrong Credentials)
**Symptoms**:
- G-Core server configured
- GeViScope running
- Still no cameras
- GeViServer logs show authentication errors
**Solution**:
- Verify username/password in G-Core server config matches GeViScope
- Common usernames: `gevisoft`, `admin`, `gscadmin`
- Check GeViScope user configuration
## Quick Fix Commands
### 1. Check what G-Core servers exist:
```bash
# Note: Requires authentication bypass or valid token
curl http://localhost:8000/api/v1/configuration/servers
```
### 2. Add localhost G-Core server:
```bash
curl -X POST http://localhost:8000/api/v1/configuration/servers \
-H "Content-Type: application/json" \
-d '{
"alias": "Local Storage",
"host": "localhost",
"user": "gevisoft",
"password": "change_me",
"enabled": true
}'
```
### 3. Restart services to apply changes:
```powershell
.\restart-services.ps1
```
### 4. Wait 30 seconds for connection, then check cameras:
```bash
curl http://localhost:8000/api/v1/cameras
```
## Expected Result After Fix
```json
{
"cameras": [
{
"channel": 1,
"name": "Camera 1",
"description": "Front entrance",
"has_ptz": false,
"has_video_sensor": true,
"status": "online"
},
{
"channel": 2,
"name": "Camera 2",
...
}
],
"total": 2
}
```
## Still Not Working?
### Check GeViServer Logs
Look in: `C:\GEVISOFT\Logs\` or wherever GeViServer logs are stored
**Look for**:
- G-Core connection attempts
- Authentication failures
- Network errors
### Verify Ports
- GeViScope (GSCServer) listens on ports (check GeViScope config)
- GeViSoft must be able to connect to these ports
- Firewall might be blocking
### Test Connection Manually
From GeViSet:
1. Try to connect to localhost GeViScope
2. If it fails, the issue is not with the API
3. Fix GeViScope connectivity first
## Architecture Diagram
```
┌─────────────────────────────────────────────────┐
│ Your Machine (localhost) │
├─────────────────────────────────────────────────┤
│ │
│ GeViSoft (GeViServer.exe) │
│ ├─ Manages video routing │
│ └─ Needs to connect to GeViScope via G-Core │
│ │
│ ↓ G-Core connection (configured in │
│ ↓ TestMKS.set GeViGCoreServer folder) │
│ ↓ │
│ GeViScope (GSCServer.exe) │
│ ├─ Storage/recording server │
│ ├─ HAS THE CAMERAS! ← This is where they are │
│ └─ Must be reachable from GeViSoft │
│ │
│ ↓ │
│ ↓ Connected to │
│ ↓ │
│ IP Cameras (hardware) │
│ └─ Actual camera devices │
│ │
└─────────────────────────────────────────────────┘
```
## Summary Checklist
- [ ] GeViServer.exe is running
- [ ] GSCServer.exe is running
- [ ] TestMKS.set has G-Core server entry for localhost
- [ ] G-Core server entry is enabled
- [ ] Credentials in G-Core config match GSCServer
- [ ] GeViSoft successfully connected to GSCServer (check GeViSet)
- [ ] GSCServer has cameras configured
- [ ] Services restarted after configuration changes
- [ ] Waited 30+ seconds for connection to establish
If all checked, cameras should appear in API!
---
**Last Updated**: 2025-12-17

View File

@@ -0,0 +1,493 @@
# REST API Endpoints - Data Sources Explained
## Overview
This document explains where each REST API endpoint gets its data and how the flow works.
---
## 🎥 Camera Endpoints
### GET /api/v1/cameras
**Data Source**: GeViServer Camera Manager (real-time, in-memory)
**Flow**:
```
Client → FastAPI → gRPC (CameraService) → StateQueryHandler → SDK → GeViServer Camera Manager
```
**Code Path**:
1. `routers/cameras.py` - REST endpoint
2. `services/camera_service.py` - Business logic
3. `clients/sdk_bridge_client.py` - gRPC client
4. `Services/CameraService.cs` (C#) - gRPC service
5. `SDK/StateQueryHandler.cs` (C#) - SDK wrapper
6. `CSQGetFirstVideoInput()` + `CSQGetNextVideoInput()` - SDK enumeration
**What You Get**:
```json
[
{
"channel": 1,
"name": "Front Door Camera",
"description": "Main entrance",
"has_ptz": true,
"has_video_sensor": true,
"status": "online"
}
]
```
**Data Characteristics**:
- ✅ Real-time camera list
- ✅ Current connection status
- ✅ Live from GeViServer memory
- ❌ NOT stored in TestMKS.set
- 🔄 Changes when cameras connect/disconnect
---
## 📺 Monitor Endpoints
### GET /api/v1/monitors
**Data Source**: GeViServer Monitor Manager (real-time, in-memory)
**Flow**:
```
Client → FastAPI → gRPC (MonitorService) → StateQueryHandler → SDK → GeViServer Monitor Manager
```
**Code Path**:
1. `routers/monitors.py`
2. `services/monitor_service.py`
3. `clients/sdk_bridge_client.py`
4. `Services/MonitorService.cs` (C#)
5. `SDK/StateQueryHandler.cs` (C#)
6. `CSQGetFirstVideoOutput()` + `CSQGetNextVideoOutput()`
**What You Get**:
```json
[
{
"channel": 1,
"name": "Main Monitor",
"is_active": true,
"current_camera_id": 7
}
]
```
**Data Characteristics**:
- ✅ Real-time monitor/viewer list
- ✅ Current routing state (which camera is shown)
- ✅ GSCView client status
- ❌ NOT in TestMKS.set
- 🔄 Changes when monitors connect/disconnect
---
## 🔀 CrossSwitch Endpoints
### POST /api/v1/crossswitch
**Action**: Routes camera to monitor (sends command to GeViServer)
**Flow**:
```
Client → FastAPI → gRPC (CrossSwitchService) → ActionDispatcher → SDK → GeViServer Action Engine
```
**Request**:
```json
{
"camera_id": 7,
"monitor_id": 3,
"mode": 0
}
```
**Code Path**:
1. `routers/crossswitch.py`
2. `services/crossswitch_service.py`
3. `Services/CrossSwitchService.cs` (C#)
4. `SDK/ActionDispatcher.cs` (C#)
5. `SendAction("CrossSwitch", ...)` - SDK action
**What Happens**:
- GeViServer routes video from Camera 7 to Monitor 3
- Monitor immediately shows the camera feed
- Routing state updated in GeViServer memory
### DELETE /api/v1/monitors/{id}
**Action**: Clears monitor (stops video display)
**Code Path**: Similar to CrossSwitch but calls `ClearVideoOutput` action
---
## ⚙️ Configuration Endpoints (✅ IMPLEMENTED)
### GET /api/v1/configuration/servers
**Data Source**: TestMKS.set file (persistent binary configuration)
**Flow**:
```
Client → FastAPI → gRPC (ConfigurationService) → SetupClient.Download() →
Parse .set file → Extract GeViGCoreServer folder → Return servers
```
**Code Path**:
1. `routers/configuration.py`
2. `services/configuration_service.py`
3. `clients/sdk_bridge_client.py`
4. `Services/ConfigurationService.cs` (C#) - gRPC service
5. `SDK/GeViSetupClientWrapper.cs` (C#) - Download config
6. `Services/FolderTreeParser.cs` (C#) - Parse binary .set
7. Navigate to "GeViGCoreServer" folder
8. Extract all server nodes
**What You Get**:
```json
[
{
"id": "1",
"alias": "Remote Server 1",
"host": "192.168.1.100",
"user": "admin",
"enabled": true,
"deactivate_echo": false,
"deactivate_live_check": false
},
{
"id": "2",
"alias": "Remote Server 2",
...
}
]
```
**Data Characteristics**:
- ✅ Persistent in TestMKS.set file
- ✅ Survives GeViServer restart
- ✅ Visible in GeViSet UI
- 💾 Binary format, parsed on-demand
- 🔒 Requires SetupClient download
---
### POST /api/v1/configuration/servers
**Action**: Creates new G-Core server in configuration
**Flow**:
```
Client → FastAPI → gRPC → SetupClient.Download() → Parse .set →
Auto-increment ID → Create server node → Write tree → SetupClient.Upload()
```
**Request**:
```json
{
"alias": "New Remote Server",
"host": "192.168.1.200",
"user": "admin",
"password": "secret",
"enabled": true
}
```
**What Happens**:
1. Downloads current TestMKS.set file
2. Parses binary format into folder tree
3. Finds GeViGCoreServer folder
4. Calculates new ID (max existing ID + 1)
5. Creates new server node with all fields
6. Writes modified tree back to binary
7. Uploads to GeViServer
8. GeViServer saves and reloads config
**Response**:
```json
{
"id": "14",
"alias": "New Remote Server",
"host": "192.168.1.200",
...
}
```
---
### PUT /api/v1/configuration/servers/{server_id}
**Status**: ⚠️ KNOWN BUG - "Server ID is required"
**Intended Flow**: Download → Parse → Find server → Update fields → Upload
**Workaround**: Use DELETE + POST to replace server
---
### DELETE /api/v1/configuration/servers/{server_id}
**Action**: Removes server from configuration
**Flow**:
```
Client → FastAPI → gRPC → Download .set → Parse →
Find server node by ID → Remove node → Upload
```
**Critical Note**: When deleting multiple servers, always delete in **REVERSE ORDER** (highest ID first) to prevent ID shifting!
---
### GET /api/v1/configuration/action-mappings
**Data Source**: TestMKS.set file → ActionMapping folder
**Flow**: Same as servers, but navigates to "ActionMapping" folder
**What You Get**:
```json
[
{
"id": 1,
"name": "Door Contact Mapping",
"input_action": "GeVi DoorContact_101001",
"output_action": "GeVi PanLeft_101027",
"enabled": true
}
]
```
**Data Characteristics**:
- ID is 1-based index in MappingRules list
- Each mapping links input action → output action
- Used for automation (e.g., door opens → camera pans)
---
### POST /api/v1/configuration/action-mappings
**Action**: Creates new action mapping
**Flow**: Download → Parse → Add to MappingRules list → Upload
**Request**:
```json
{
"name": "VMD Trigger",
"input_action": "GeVi VideoMotionDetection_7",
"output_action": "GeVi StartRecording_7",
"enabled": true
}
```
---
### PUT /api/v1/configuration/action-mappings/{mapping_id}
**Action**: Updates existing action mapping
**Flow**: Download → Parse → Find by ID → Update fields → Upload
**Status**: ✅ WORKING (all CRUD operations functional)
---
### DELETE /api/v1/configuration/action-mappings/{mapping_id}
**Action**: Removes action mapping
**Flow**: Download → Parse → Remove from list → Upload
**⚠️ CRITICAL**: When deleting multiple mappings, always delete in **REVERSE ORDER**!
**Why?** Mappings use 1-based indices. Deleting mapping #5 shifts all subsequent mappings down by 1 index.
**Example Bug**:
```
Original: [#1, #2, #3, #4, #5, #6]
Delete #4 → [#1, #2, #3, #5→4, #6→5]
Delete #5 (which is now actually #6!) → WRONG MAPPING DELETED!
```
**Solution**:
```python
# Sort by ID descending
mappings_sorted = sorted(mappings, key=lambda x: x['id'], reverse=True)
for mapping in mappings_sorted:
delete_action_mapping(mapping['id']) # Delete from highest to lowest
```
---
## 🔐 Authentication Endpoints
### POST /api/v1/auth/login
**Data Source**: PostgreSQL database (user credentials)
**Flow**: FastAPI → AuthService → Database query → JWT generation
**Not fully implemented yet** - authentication is stubbed out
---
## ❤️ Health Endpoint
### GET /api/v1/health
**Data Source**: Real-time component checks
**Checks**:
1. **Database**: PostgreSQL connection test
2. **Redis**: Cache connectivity
3. **SDK Bridge**: gRPC connection test (calls ping)
**Response**:
```json
{
"status": "healthy",
"version": "1.0.0",
"components": {
"database": "healthy",
"redis": "healthy",
"sdk_bridge": "healthy"
},
"timestamp": "2025-12-16T21:15:00Z"
}
```
---
## 🔍 Data Source Summary
| Endpoint Pattern | Data Source | Access Method | Persistent? |
|------------------|-------------|---------------|-------------|
| `/cameras` | GeViServer memory | SDK State Query | ❌ Real-time |
| `/monitors` | GeViServer memory | SDK State Query | ❌ Real-time |
| `/crossswitch` | GeViServer actions | SDK Action Dispatch | ❌ Command |
| `/configuration/servers` | TestMKS.set | SetupClient + Parser | ✅ Persistent |
| `/configuration/action-mappings` | TestMKS.set | SetupClient + Parser | ✅ Persistent |
| `/auth/*` | PostgreSQL | Database query | ✅ Persistent |
| `/health` | Component checks | Direct probe | ❌ Real-time |
---
## 🎯 Testing the API
### Using Swagger UI
1. Open http://localhost:8000/docs
2. All endpoints are documented with schemas
3. Click "Try it out" to test
### Using curl
```bash
# List cameras
curl http://localhost:8000/api/v1/cameras
# List servers
curl http://localhost:8000/api/v1/configuration/servers
# Get specific server
curl http://localhost:8000/api/v1/configuration/servers/1
# Create server
curl -X POST http://localhost:8000/api/v1/configuration/servers \
-H "Content-Type: application/json" \
-d '{
"alias": "Test Server",
"host": "192.168.1.50",
"user": "admin",
"password": "test123",
"enabled": true
}'
# Delete server
curl -X DELETE http://localhost:8000/api/v1/configuration/servers/14
```
### Using Python
```python
import requests
# List cameras
response = requests.get("http://localhost:8000/api/v1/cameras")
cameras = response.json()
print(f"Found {len(cameras)} cameras")
# Get all servers
response = requests.get("http://localhost:8000/api/v1/configuration/servers")
servers = response.json()
print(f"Found {len(servers)} servers")
# Create server
new_server = {
"alias": "Python Test Server",
"host": "192.168.1.99",
"user": "admin",
"password": "secret",
"enabled": True
}
response = requests.post(
"http://localhost:8000/api/v1/configuration/servers",
json=new_server
)
created = response.json()
print(f"Created server with ID: {created['id']}")
```
---
## 🐛 Common Issues
### 1. Empty Camera List
**Cause**: No cameras configured in GeViServer
**Solution**: Add IP cameras in GeViSet or camera configuration
### 2. Configuration Endpoints Return Error
**Cause**: SetupClient cannot connect to GeViServer
**Possible reasons**:
- GeViSet is connected (blocks SetupClient port)
- GeViServer not running
- Port 7702 not available
**Solution**:
- Close GeViSet
- Ensure GeViServer is running
- Check `status-services.ps1`
### 3. CrossSwitch Fails
**Cause**: Invalid camera or monitor ID
**Solution**: First call `/cameras` and `/monitors` to get valid IDs
---
## 📚 Next Steps
1. **Test each endpoint** with Swagger UI
2. **Verify data sources** match expectations
3. **Check logs** for any errors
4. **Use test scripts** in repository root:
- `comprehensive_crud_test.py` - Full CRUD test
- `verify_config_via_grpc.py` - Config verification
---
**Last Updated**: 2025-12-16
**Version**: 1.0

View File

@@ -0,0 +1,305 @@
# Geutebruck Cross-Switching API Reference
## Overview
REST API for Geutebruck GeViScope/GeViSoft cross-switching control. Route cameras to monitors via simple HTTP endpoints.
**Base URL**: `http://localhost:8000`
**API Version**: 1.0.0
**Authentication**: JWT Bearer tokens
## Quick Links
- **Interactive Docs**: http://localhost:8000/docs (Swagger UI)
- **Alternative Docs**: http://localhost:8000/redoc (ReDoc)
- **Health Check**: http://localhost:8000/health
- **Metrics**: http://localhost:8000/metrics
---
## Authentication
### POST /api/v1/auth/login
Authenticate and receive JWT tokens.
**Request:**
```json
{
"username": "admin",
"password": "admin123"
}
```
**Response (200 OK):**
```json
{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"refresh_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "bearer",
"expires_in": 3600,
"user": {
"id": "uuid",
"username": "admin",
"role": "administrator"
}
}
```
### POST /api/v1/auth/logout
Logout (blacklist token).
**Headers**: `Authorization: Bearer {access_token}`
**Response (200 OK):**
```json
{
"message": "Successfully logged out"
}
```
### GET /api/v1/auth/me
Get current user information.
**Headers**: `Authorization: Bearer {access_token}`
---
## Cameras
### GET /api/v1/cameras
List all cameras.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
**Response (200 OK):**
```json
{
"cameras": [
{
"id": 1,
"name": "Entrance Camera",
"description": "Main entrance",
"has_ptz": true,
"has_video_sensor": true,
"status": "online"
}
],
"total": 1
}
```
### GET /api/v1/cameras/{camera_id}
Get camera details.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
---
## Monitors
### GET /api/v1/monitors
List all monitors.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
**Response (200 OK):**
```json
{
"monitors": [
{
"id": 1,
"name": "Control Room Monitor 1",
"description": "Main display",
"status": "active",
"current_camera_id": 5
}
],
"total": 1
}
```
### GET /api/v1/monitors/filter/available
Get available (idle) monitors for cross-switching.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
---
## Cross-Switching (Core Functionality)
### POST /api/v1/crossswitch
**Execute cross-switch**: Route camera to monitor.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: **Operator+** (NOT Viewer)
**Request:**
```json
{
"camera_id": 1,
"monitor_id": 1,
"mode": 0
}
```
**Response (200 OK):**
```json
{
"success": true,
"message": "Successfully switched camera 1 to monitor 1",
"route": {
"id": "uuid",
"camera_id": 1,
"monitor_id": 1,
"executed_at": "2025-12-09T12:00:00Z",
"executed_by": "uuid",
"executed_by_username": "operator",
"is_active": true
}
}
```
### POST /api/v1/crossswitch/clear
**Clear monitor**: Remove camera from monitor.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: **Operator+**
**Request:**
```json
{
"monitor_id": 1
}
```
**Response (200 OK):**
```json
{
"success": true,
"message": "Successfully cleared monitor 1",
"monitor_id": 1
}
```
### GET /api/v1/crossswitch/routing
Get current routing state (active camera-to-monitor mappings).
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
**Response (200 OK):**
```json
{
"routes": [
{
"id": "uuid",
"camera_id": 1,
"monitor_id": 1,
"executed_at": "2025-12-09T12:00:00Z",
"executed_by_username": "operator",
"is_active": true
}
],
"total": 1
}
```
### GET /api/v1/crossswitch/history
Get routing history with pagination.
**Headers**: `Authorization: Bearer {access_token}`
**Required Role**: Viewer+
**Query Parameters:**
- `limit`: Max records (1-1000, default: 100)
- `offset`: Skip records (default: 0)
- `camera_id`: Filter by camera (optional)
- `monitor_id`: Filter by monitor (optional)
---
## Authorization Roles
| Role | Cameras | Monitors | Cross-Switch | Clear Monitor | View Routing |
|------|---------|----------|--------------|---------------|--------------|
| **Viewer** | ✅ Read | ✅ Read | ❌ | ❌ | ✅ Read |
| **Operator** | ✅ Read | ✅ Read | ✅ Execute | ✅ Execute | ✅ Read |
| **Administrator** | ✅ Read | ✅ Read | ✅ Execute | ✅ Execute | ✅ Read |
---
## Error Responses
### 401 Unauthorized
```json
{
"error": "Unauthorized",
"message": "Authentication required"
}
```
### 403 Forbidden
```json
{
"error": "Forbidden",
"message": "Requires operator role or higher"
}
```
### 404 Not Found
```json
{
"error": "Not Found",
"detail": "Camera with ID 999 not found"
}
```
### 500 Internal Server Error
```json
{
"error": "Internal Server Error",
"detail": "Cross-switch operation failed: SDK Bridge connection timeout"
}
```
---
## Rate Limiting
Currently not implemented in MVP. Consider adding in production.
---
## Caching
- **Cameras**: Cached for 60 seconds in Redis
- **Monitors**: Cached for 60 seconds in Redis
- **Routing State**: Not cached (real-time from database)
Use `use_cache=false` query parameter to bypass cache.
---
## Audit Logging
All operations are logged to the `audit_logs` table:
- Authentication attempts (success/failure)
- Cross-switch executions
- Monitor clear operations
Query audit logs via database or add dedicated endpoint in future.

View File

@@ -0,0 +1,207 @@
@startuml Component Interactions
!theme plain
skinparam backgroundColor #FEFEFE
title Geutebruck API - Component Interactions & Data Flow
package "Python API (Port 8000)" {
[main.py\nFastAPI App] as main
package "Routers" {
[auth.py] as authrouter
[configuration.py\n✅ IMPLEMENTED] as configrouter
[cameras.py] as camrouter
[monitors.py] as monrouter
[crossswitch.py] as crossrouter
}
package "Services" {
[configuration_service.py\n✅ IMPLEMENTED] as configsvc
[camera_service.py] as camsvc
[monitor_service.py] as monsvc
[crossswitch_service.py] as crosssvc
}
package "Clients" {
[sdk_bridge_client.py\ngRPC Client] as grpcclient
}
package "Schemas (Pydantic)" {
[GCoreServer\nGCoreServerInput] as serverschema
[ActionMapping\nActionMappingInput] as mappingschema
[Camera, Monitor] as schemas
}
package "Proto (gRPC Generated)" {
[configuration_pb2.py\nconfiguration_pb2_grpc.py\n✅ FIXED IMPORTS] as configproto
[camera_pb2.py\nmonitor_pb2.py] as otherproto
}
}
package "C# SDK Bridge (Port 50051)" {
[Program.cs\ngRPC Server] as program
package "Services (gRPC)" {
[ConfigurationService.cs\n✅ IMPLEMENTED] as configgrpc
[CameraService.cs] as camgrpc
[MonitorService.cs] as mongrpc
[CrossSwitchService.cs] as crossgrpc
}
package "SDK Wrappers" {
[GeViDatabaseWrapper.cs] as dbwrapper
[GeViSetupClientWrapper.cs\n✅ IMPLEMENTED] as setupwrapper
[StateQueryHandler.cs] as statehandler
[ActionDispatcher.cs] as dispatcher
}
package "Configuration Handlers" {
[FolderTreeParser.cs\n✅ IMPLEMENTED] as parser
[FolderTreeWriter.cs\n✅ IMPLEMENTED] as writer
}
package "Proto (gRPC Generated)" {
[configuration.proto\nConfigurationService] as configdef
[camera.proto\nmonitor.proto] as otherdef
}
}
package "GeViServer (Ports 7700-7703)" {
[GeViServer.exe] as geviserver
package "SDK API (C++ DLL)" {
[GeViProcAPINET_4_0.dll\nGeViScope SDK] as sdk
}
package "Configuration" {
database "TestMKS.set\n(Binary)" as config {
folder "GeViGCoreServer" as serversfolder {
[Server_1\nServer_2\n...\nServer_13] as servers
}
folder "ActionMapping" as mappingfolder {
[Mapping rules\n64 entries] as mappings
}
}
}
}
' Python API Internal Flow
main --> authrouter
main --> configrouter
main --> camrouter
configrouter --> configsvc : Uses
configsvc --> serverschema : Validates
configsvc --> mappingschema : Validates
configsvc --> grpcclient : Calls
grpcclient --> configproto : Uses
' Python to C# Communication
configproto ..> configdef : gRPC\nPort 50051
otherproto ..> otherdef : gRPC
' C# SDK Bridge Internal Flow
program --> configgrpc : Hosts
program --> camgrpc : Hosts
configgrpc --> setupwrapper : Uses
setupwrapper --> parser : Downloads &\nparses config
setupwrapper --> writer : Builds &\nuploads config
camgrpc --> dbwrapper : Uses
camgrpc --> statehandler : Uses
' C# to GeViServer Communication
dbwrapper --> sdk : Calls\nSDK API
setupwrapper --> sdk : SetupClient\nprotocol
statehandler --> sdk : Query API
sdk --> geviserver : Ports\n7700-7703
geviserver --> config : Read/Write
note right of configrouter
**REST Endpoints:**
GET /api/v1/configuration/servers
POST /api/v1/configuration/servers
PUT /api/v1/configuration/servers/{id}
DELETE /api/v1/configuration/servers/{id}
GET /api/v1/configuration/action-mappings
POST /api/v1/configuration/action-mappings
PUT /api/v1/configuration/action-mappings/{id}
DELETE /api/v1/configuration/action-mappings/{id}
end note
note right of configgrpc
**gRPC Methods:**
CreateServer(ServerRequest)
GetAllServers(Empty)
GetServer(ServerIdRequest)
UpdateServer(ServerRequest) ⚠️
DeleteServer(ServerIdRequest)
CreateActionMapping(MappingRequest)
GetAllActionMappings(Empty)
GetActionMapping(MappingIdRequest)
UpdateActionMapping(MappingRequest)
DeleteActionMapping(MappingIdRequest)
ReadConfigurationTree(Empty)
end note
note right of parser
**FolderTreeParser:**
1. Receives binary .set file
2. Parses header and structure
3. Builds tree of FolderNode objects
4. Each node has:
- Name, Type, Value
- Children (recursive)
5. Returns navigable tree
end note
note right of writer
**FolderTreeWriter:**
1. Takes FolderNode tree
2. Validates structure
3. Serializes to binary format:
- Type codes (1=bool, 4=int32, etc)
- String lengths
- Nested structures
4. Returns binary .set data
5. Uploaded via SetupClient
end note
note bottom of config
**Binary Configuration:**
• Proprietary GeViSoft format
• Hierarchical folder/node structure
• Type-safe fields with type codes
• Critical: bool vs int32 type handling
• Must preserve field order
• Auto-save on change
end note
note as criticalfix
**Critical Bug Fix (2025-12-16):**
**Cascade Deletion Prevention**
- Problem: Deleting mappings by ID in ascending
order caused ID shifting, deleting wrong items
- Solution: Always delete in REVERSE order
(highest ID first)
- Impact: Prevented loss of ~54 mappings
- Status: FIXED in comprehensive_crud_test.py
end note
@enduml

View File

@@ -0,0 +1,163 @@
@startuml Deployment Architecture
!theme plain
skinparam backgroundColor #FEFEFE
title Geutebruck API - Deployment Architecture
node "Windows Server" {
node "GeViServer Process\nPID: 45612" as geviserver {
artifact "GeViServer.exe console" as gvexe
folder "C:\\GEVISOFT" {
file "TestMKS.set\n(13 servers, 64 mappings)" as config
file "GeViServer.exe" as exe
file "GeViProcAPINET_4_0.dll" as sdk
}
port "7700" as p7700
port "7701" as p7701
port "7702" as p7702
port "7703" as p7703
}
node "C# SDK Bridge Process\nPID: 48052" as sdkbridge {
artifact "GeViScopeBridge.exe" as bridge
folder "Release Build" {
file "GeViScopeBridge.exe\n(.NET 8.0)" as bridgeexe
file "GeViScope SDK DLLs" as sdkdlls
file "gRPC binaries" as grpclibs
}
component "Configuration Service" as configsvc
component "Camera Service" as camsvc
component "Monitor Service" as monsvc
component "CrossSwitch Service" as crosssvc
port "50051" as p50051
}
node "Python API Process\nPID: 46212" as pythonapi {
artifact "uvicorn main:app" as uvicorn
folder ".venv" {
file "Python 3.12" as python
file "FastAPI" as fastapi
file "grpcio" as grpc
file "uvicorn" as uv
}
component "REST Endpoints" as rest
component "Configuration Router" as configrouter
component "gRPC Client" as grpcclient
port "8000" as p8000
}
folder "PowerShell Scripts" {
file "start-services.ps1" as start
file "stop-services.ps1" as stop
file "restart-services.ps1" as restart
file "status-services.ps1" as status
}
}
cloud "Network" {
actor "Web Client" as web
actor "Mobile App" as mobile
actor "GeViSet" as geviset
}
' Service Management
start ..> geviserver : 1. Start with\n"console" arg\nWait for port 7700
start ..> sdkbridge : 2. Start SDK Bridge\nWait for port 50051
start ..> pythonapi : 3. Start uvicorn\nWait for port 8000
stop ..> pythonapi : 1. Stop uvicorn
stop ..> sdkbridge : 2. Stop bridge
stop ..> geviserver : 3. Stop server
status ..> geviserver : Check PID,\nports 7700-7703
status ..> sdkbridge : Check PID,\nport 50051
status ..> pythonapi : Check PID, port 8000,\nHTTP health check
' Port Connections
web --> p8000 : HTTP/REST
mobile --> p8000 : HTTP/REST
geviset -.-> p7702 : SetupClient\n(blocked when\nAPI runs)
p8000 --> rest
rest --> configrouter
configrouter --> grpcclient
grpcclient --> p50051 : gRPC
p50051 --> configsvc
p50051 --> camsvc
p50051 --> monsvc
p50051 --> crosssvc
configsvc --> p7702 : SetupClient\nprotocol
camsvc --> p7700 : SDK API
monsvc --> p7700 : SDK API
crosssvc --> p7700 : SDK API
p7700 --> gvexe
p7701 --> gvexe
p7702 --> gvexe
p7703 --> gvexe
gvexe --> config : Read/Write
note right of start
**Startup Order:**
1. GeViServer (15-60s wait for port 7700)
2. SDK Bridge (10-30s wait for port 50051)
3. Python API (5-20s wait for port 8000)
Each step waits for port to be listening
before proceeding to next service.
end note
note right of geviserver
**GeViServer:**
• Started with "console" argument
• Loads TestMKS.set on startup
• Listens on ports 7700-7703
• Manages cameras, monitors, events
• Stores configuration in binary .set format
end note
note right of sdkbridge
**SDK Bridge:**
• .NET 8.0 application
• Wraps GeViScope SDK (C++ DLL)
• Exposes gRPC services
• Handles SetupClient protocol
• Parses/writes binary .set files
end note
note right of pythonapi
**Python API:**
• FastAPI framework
• Swagger UI at /docs
• Authentication & authorization
• Configuration management ✅
• Camera/monitor control
• Health checks
end note
note bottom of config
**Configuration File:**
• Binary format (.set)
• Hierarchical folder structure
• Contains:
- 13 G-Core servers
- 64 action mappings
- System settings
- User accounts
end note
@enduml

View File

@@ -0,0 +1,133 @@
@startuml Geutebruck API Architecture Overview
!theme plain
skinparam backgroundColor #FEFEFE
skinparam componentStyle rectangle
title Geutebruck API System Architecture - Overview
' Client Layer
package "Client Layer" {
[Web Browser] as web
[GeViSet UI] as geviset
[Mobile App] as mobile
[Postman/Testing] as postman
}
' Python API Layer
package "Python API Layer\n(FastAPI - Port 8000)" {
[REST API Endpoints] as rest
[Authentication] as auth
[Service Layer] as services
package "Configuration Management ✅" {
[ConfigurationService] as configsvc
[Server CRUD] as servercrud
[ActionMapping CRUD] as mappingcrud
}
}
' C# SDK Bridge Layer
package "C# SDK Bridge\n(gRPC Service - Port 50051)" {
[gRPC Services] as grpc
package "SDK Wrappers" {
[GeViDatabase Wrapper] as dbwrapper
[StateQuery Handler] as statequery
[Action Dispatcher] as dispatcher
}
package "Configuration Components ✅" {
[SetupClient] as setupclient
[FolderTreeParser] as parser
[FolderTreeWriter] as writer
}
}
' GeViServer Layer
package "GeViServer\n(GeViSoft Server - Ports 7700-7703)" {
[Camera Manager] as cammgr
[Monitor Manager] as monmgr
[Action Engine] as actioneng
[Configuration Storage] as config
database "TestMKS.set\n(Binary Config)" as setfile {
[GeViGCoreServer\n13 servers] as servers
[ActionMapping\n64 mappings] as mappings
}
}
' External Systems
cloud "Hardware Layer" {
[IP Cameras] as cameras
[Video Monitors] as monitors
[I/O Devices] as io
}
' Connections - Client to API
web -down-> rest : HTTP/REST
mobile -down-> rest : HTTP/REST
postman -down-> rest : HTTP/REST
geviset -down-> config : SetupClient\n(blocked when\nAPI runs)
' API Internal
rest -down-> auth
rest -down-> services
rest -down-> configsvc
configsvc -down-> servercrud
configsvc -down-> mappingcrud
' API to SDK Bridge
services -down-> grpc : gRPC\nPort 50051
configsvc -down-> grpc : gRPC\nPort 50051
' SDK Bridge Internal
grpc -down-> dbwrapper
grpc -down-> statequery
grpc -down-> dispatcher
grpc -down-> setupclient
setupclient -down-> parser
setupclient -down-> writer
' SDK Bridge to GeViServer
dbwrapper -down-> cammgr : GeViScope SDK\nPorts 7700-7703
statequery -down-> monmgr : GeViScope SDK
dispatcher -down-> actioneng : GeViScope SDK
setupclient -down-> config : SetupClient\nProtocol
' GeViServer Internal
config -down-> setfile
cammgr -down-> servers
actioneng -down-> mappings
' GeViServer to Hardware
cammgr -down-> cameras : Video\nStreams
monmgr -down-> monitors : Video\nOutput
actioneng -down-> io : Control\nSignals
note right of configsvc
**Implemented Features:**
• Server CRUD (C, R, D working)
• ActionMapping CRUD (all ops)
• Cascade deletion prevention
• Auto-increment server IDs
• Bool type handling
end note
note right of setupclient
**Configuration Flow:**
1. Download .set file
2. Parse binary format
3. Modify configuration
4. Write back to tree
5. Upload to GeViServer
end note
note bottom of setfile
**Current State:**
• 13 G-Core Servers
• 64 Action Mappings
• Managed via REST API
end note
@enduml

View File

@@ -0,0 +1,138 @@
@startuml Configuration Management Sequence
!theme plain
skinparam backgroundColor #FEFEFE
title Configuration Management - Create G-Core Server Flow
actor "Client\n(Browser/API)" as client
participant "FastAPI\nREST API\n:8000" as api
participant "gRPC\nSDK Bridge\n:50051" as bridge
participant "SetupClient" as setup
participant "FolderTree\nParser" as parser
participant "FolderTree\nWriter" as writer
participant "GeViServer\n:7700-7703" as server
database "TestMKS.set" as config
== Server Creation Request ==
client -> api : POST /api/v1/configuration/servers\n{"alias": "New Server", "host": "192.168.1.100", ...}
activate api
api -> api : Validate request\n(check required fields)
api -> bridge : gRPC: CreateServer(request)
activate bridge
bridge -> setup : DownloadConfiguration()
activate setup
setup -> server : Connect to SetupClient port\n(Request configuration)
activate server
server -> setup : Return binary .set file
deactivate server
setup --> bridge : Binary config data
deactivate setup
bridge -> parser : ParseConfiguration(binaryData)
activate parser
parser -> parser : Parse binary format\nBuild folder tree structure
parser --> bridge : FolderTree object
deactivate parser
== Configuration Modification ==
bridge -> bridge : Navigate to GeViGCoreServer folder
bridge -> bridge : Find highest server ID\n(e.g., max = 13)
bridge -> bridge : Generate new ID = 14
bridge -> writer : CreateServerNode(\nid="14",\nalias="New Server",\nhost="192.168.1.100",\n...)
activate writer
writer -> writer : Create folder node\nAdd child nodes:\n- Alias\n- DeactivateEcho\n- DeactivateLiveCheck\n- Enabled (bool type!)\n- Host\n- Password\n- User
writer -> writer : Insert into GeViGCoreServer\nfolder in alphabetical order
writer --> bridge : Updated FolderTree
deactivate writer
== Upload Modified Configuration ==
bridge -> setup : UploadConfiguration(modifiedTree)
activate setup
setup -> setup : Serialize FolderTree\nto binary format
setup -> server : Upload modified .set file\nvia SetupClient protocol
activate server
server -> config : Save TestMKS.set
server -> server : Reload configuration\n(batch import)
server --> setup : Upload success
deactivate server
setup --> bridge : Configuration updated
deactivate setup
bridge --> api : CreateServerResponse\n{id: "14", ...}
deactivate bridge
api --> client : HTTP 201 Created\n{"id": "14", "alias": "New Server", ...}
deactivate api
== Verification (Optional) ==
client -> api : GET /api/v1/configuration/servers
activate api
api -> bridge : gRPC: GetAllServers()
activate bridge
bridge -> setup : DownloadConfiguration()
activate setup
setup -> server : Request current config
activate server
server --> setup : Current .set file
deactivate server
setup --> bridge : Binary data
deactivate setup
bridge -> parser : ParseConfiguration()
activate parser
parser --> bridge : FolderTree
deactivate parser
bridge -> bridge : Extract all servers from\nGeViGCoreServer folder
bridge --> api : List of servers\n(including new server #14)
deactivate bridge
api --> client : HTTP 200 OK\n[{id:"1",...}, {id:"14",...}]
deactivate api
note over bridge, server
**Critical Implementation Details:**
1. **Bool Type Handling**:
- Must write Enabled as type code 1 (bool)
- GeViServer stores as int32 but reads bool correctly
2. **Field Order**:
- Must be: Alias, DeactivateEcho, DeactivateLiveCheck,
Enabled, Host, Password, User
3. **Auto-increment ID**:
- Find max numeric ID in existing servers
- Increment by 1 for new server
4. **SetupClient Port**:
- Only one client can connect at a time
- GeViSet blocks SDK Bridge connection (and vice versa)
end note
@enduml

View File

@@ -0,0 +1,194 @@
# Geutebruck API System Architecture (Text Diagram)
```
┌─────────────────────────────────────────────────────────────────────────────┐
│ GEUTEBRUCK API SYSTEM ARCHITECTURE │
│ (Current Implementation) │
└─────────────────────────────────────────────────────────────────────────────┘
┌─────────────────────────────────────────────────────────────────────────────┐
│ CLIENT LAYER │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────────┐ │
│ │ Web App │ │ GeViSet │ │ Postman │ │ Mobile App │ │
│ │ (Browser) │ │ (Config UI) │ │ (Testing) │ │ │ │
│ └──────┬───────┘ └──────┬───────┘ └──────┬───────┘ └──────┬───────┘ │
│ │ │ │ │ │
│ │ HTTP/REST │ SetupClient │ HTTP/REST │ HTTP/REST │
│ │ │ (Port blocked │ │ │
│ │ │ when API runs) │ │ │
└─────────┼─────────────────┼──────────────────┼──────────────────┼───────────┘
│ │ │ │
▼ ▼ ▼ ▼
┌─────────────────────────────────────────────────────────────────────────────┐
│ PYTHON API LAYER (FastAPI) Port 8000 │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────────────────┐ │
│ │ REST API Endpoints │ │
│ │ ┌──────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ │
│ │ │ /auth/* │ │ /cameras/* │ │ /monitors/* │ │ │
│ │ │ - login │ │ - list │ │ - list │ │ │
│ │ │ - logout │ │ - get details │ │ - get details │ │ │
│ │ └──────────────────┘ └──────────────────┘ └─────────────────┘ │ │
│ │ │ │
│ │ ┌──────────────────┐ ┌────────────────────────────────────────┐ │ │
│ │ │ /crossswitch/* │ │ /configuration/* ✅ IMPLEMENTED │ │ │
│ │ │ - execute │ │ ┌──────────────┐ ┌─────────────────┐ │ │ │
│ │ │ - clear │ │ │ /servers │ │ /action-mappings│ │ │ │
│ │ │ - get state │ │ │ - GET (list) │ │ - GET (list) │ │ │ │
│ │ └──────────────────┘ │ │ - POST │ │ - POST │ │ │ │
│ │ │ │ - PUT │ │ - PUT │ │ │ │
│ │ ┌──────────────────┐ │ │ - DELETE │ │ - DELETE │ │ │ │
│ │ │ /health │ │ └──────────────┘ └─────────────────┘ │ │ │
│ │ │ /docs (Swagger) │ └────────────────────────────────────────┘ │ │
│ │ └──────────────────┘ │ │
│ └────────────────────────────────────────────────────────────────────┘ │
│ │
│ ┌────────────────────────────────────────────────────────────────────┐ │
│ │ Services Layer │ │
│ │ ┌──────────────┐ ┌──────────────┐ ┌────────────────────────┐ │ │
│ │ │ AuthService │ │CameraService │ │ ConfigurationService ✅│ │ │
│ │ │ MonitorSvc │ │ CrossSwitch │ │ - Server CRUD │ │ │
│ │ └──────────────┘ └──────────────┘ │ - ActionMapping CRUD │ │ │
│ │ └────────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────────────┘ │
│ │ │
│ │ gRPC calls │
│ ▼ │
└─────────────────────────────────────────────────────────────────────────────┘
│ Port 50051 (gRPC)
┌─────────────────────────────────────────────────────────────────────────────┐
│ C# SDK BRIDGE (gRPC Service) Port 50051 │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────────────────┐ │
│ │ gRPC Services │ │
│ │ ┌──────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ │
│ │ │ CameraService │ │ MonitorService │ │ CrossSwitch │ │ │
│ │ │ - ListCameras │ │ - ListMonitors │ │ - Execute │ │ │
│ │ │ - GetDetails │ │ - GetDetails │ │ - Clear │ │ │
│ │ └──────────────────┘ └──────────────────┘ └─────────────────┘ │ │
│ │ │ │
│ │ ┌────────────────────────────────────────────────────────┐ │ │
│ │ │ ConfigurationService ✅ IMPLEMENTED │ │ │
│ │ │ ┌───────────────────┐ ┌──────────────────────────┐ │ │ │
│ │ │ │ Server Methods │ │ ActionMapping Methods │ │ │ │
│ │ │ │ - CreateServer │ │ - CreateActionMapping │ │ │ │
│ │ │ │ - GetAllServers │ │ - GetAllActionMappings │ │ │ │
│ │ │ │ - GetServer │ │ - GetActionMapping │ │ │ │
│ │ │ │ - UpdateServer⚠ │ │ - UpdateActionMapping │ │ │ │
│ │ │ │ - DeleteServer │ │ - DeleteActionMapping │ │ │ │
│ │ │ └───────────────────┘ └──────────────────────────┘ │ │ │
│ │ └────────────────────────────────────────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────────────┘ │
│ │
│ ┌────────────────────────────────────────────────────────────────────┐ │
│ │ SDK Wrapper Components │ │
│ │ ┌──────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ │
│ │ │ GeViDatabase │ │ StateQuery │ │ SetupClient ✅ │ │ │
│ │ │ Wrapper │ │ Handler │ │ - Download .set │ │ │
│ │ │ - Connect │ │ - GetFirst/Next │ │ - Upload .set │ │ │
│ │ │ - Callback Mgmt │ │ - Enumerate │ │ - Parse tree │ │ │
│ │ └──────────────────┘ └──────────────────┘ └─────────────────┘ │ │
│ │ │ │
│ │ ┌──────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ │
│ │ │ FolderTree │ │ FolderTree │ │ Action │ │ │
│ │ │ Parser ✅ │ │ Writer ✅ │ │ Dispatcher │ │ │
│ │ │ - Parse .set │ │ - Build tree │ │ - Send actions │ │ │
│ │ │ - Navigate nodes │ │ - Write nodes │ │ │ │ │
│ │ └──────────────────┘ └──────────────────┘ └─────────────────┘ │ │
│ └────────────────────────────────────────────────────────────────────┘ │
│ │ │
│ │ GeViScope SDK API │
│ │ (GeViProcAPINET_4_0.dll) │
│ ▼ │
└─────────────────────────────────────────────────────────────────────────────┘
│ Ports 7700-7703
┌─────────────────────────────────────────────────────────────────────────────┐
│ GEVISERVER (GeViSoft Server) Ports 7700-7703 │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌────────────────────────────────────────────────────────────────────┐ │
│ │ Core Services │ │
│ │ ┌──────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ │
│ │ │ Camera Manager │ │ Monitor Manager │ │ Action Engine │ │ │
│ │ │ - Video inputs │ │ - Video outputs │ │ - Event system │ │ │
│ │ │ - PTZ control │ │ - CrossSwitch │ │ - Automation │ │ │
│ │ └──────────────────┘ └──────────────────┘ └─────────────────┘ │ │
│ │ │ │
│ │ ┌────────────────────────────────────────────────────────────┐ │ │
│ │ │ Configuration Storage │ │ │
│ │ │ ┌──────────────────────────────────────────────────────┐ │ │ │
│ │ │ │ TestMKS.set (Binary Configuration File) ✅ │ │ │ │
│ │ │ │ ┌────────────────┐ ┌─────────────────────────┐ │ │ │ │
│ │ │ │ │ GeViGCoreServer│ │ ActionMapping │ │ │ │ │
│ │ │ │ │ - 13 servers │ │ - 64 mappings │ │ │ │ │
│ │ │ │ │ - Server_1 │ │ - Input → Output rules │ │ │ │ │
│ │ │ │ │ - Server_2 │ │ - VMD triggers │ │ │ │ │
│ │ │ │ │ - ... │ │ - CrossSwitch actions │ │ │ │ │
│ │ │ │ └────────────────┘ └─────────────────────────┘ │ │ │ │
│ │ │ └──────────────────────────────────────────────────────┘ │ │ │
│ │ └────────────────────────────────────────────────────────────┘ │ │
│ └────────────────────────────────────────────────────────────────────┘ │
│ │
│ Started with: geviserver.exe console │
└─────────────────────────────────────────────────────────────────────────────┘
```
## Service Management
```
PowerShell Scripts (Repository Root):
┌──────────────────────────────────────────────────────────────────────┐
│ start-services.ps1 │
│ ├─ 1. Start GeViServer (console mode) Wait for port 7700 │
│ ├─ 2. Start SDK Bridge Wait for port 50051 │
│ └─ 3. Start Python API (uvicorn) Wait for port 8000 │
└──────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────┐
│ stop-services.ps1 │
│ ├─ 1. Stop Python API (uvicorn) │
│ ├─ 2. Stop SDK Bridge │
│ └─ 3. Stop GeViServer │
└──────────────────────────────────────────────────────────────────────┘
┌──────────────────────────────────────────────────────────────────────┐
│ status-services.ps1 │
│ ├─ Check GeViServer status (PID, ports 7700-7703) │
│ ├─ Check SDK Bridge status (PID, port 50051) │
│ ├─ Check Python API status (PID, port 8000) │
│ └─ Test API health endpoint (HTTP GET /health) │
└──────────────────────────────────────────────────────────────────────┘
```
## Implemented Features ✅
- ✅ GeViServer Integration
- ✅ SDK Bridge (C# gRPC)
- ✅ Configuration Management (User Story 12)
- G-Core Server CRUD
- Action Mapping CRUD
- Cascade deletion prevention
- ✅ Python REST API
- ✅ Service Management Scripts
## Known Issues ⚠️
- ⚠️ Server UPDATE operation has bug
- ⚠️ SetupClient port conflict with GeViSet
## Ports & Communication
| Port | Service | Purpose |
|------------|----------------------|----------------------------------|
| 7700-7703 | GeViServer | SDK connections, camera control |
| 50051 | SDK Bridge (gRPC) | Python API ↔ SDK Bridge |
| 8000 | Python API (HTTP) | REST API, Swagger UI |

View File

@@ -0,0 +1,497 @@
# Geutebruck Cross-Switching API - Architecture
**Version**: 1.0.0 (MVP)
**Last Updated**: 2025-12-08
**Status**: In Development
---
## Overview
The Geutebruck Cross-Switching API provides a modern REST API for controlling video routing between cameras (video inputs) and monitors/viewers (video outputs) in Geutebruck surveillance systems. The system acts as a bridge between the native GeViScope/GeViSoft SDK and modern web/mobile applications.
**Core Functionality**:
- 🔐 User authentication with JWT tokens
- 📹 Camera discovery and management
- 🖥️ Monitor/viewer discovery and status
- 🔀 Cross-switching operations (route camera to monitor)
- 📊 Routing state tracking and audit logging
---
## System Architecture
### High-Level Architecture
```
┌─────────────────┐
│ Client Apps │ (Postman, curl, custom apps)
└────────┬────────┘
│ HTTP/REST
┌─────────────────┐
│ FastAPI Server │ (Python 3.11)
│ Port: 8000 │
└────────┬────────┘
┌────┴────┬───────────┬──────────┐
│ │ │ │
▼ ▼ ▼ ▼
┌────────┐ ┌────────┐ ┌────────┐ ┌─────────┐
│ PostgreSQL│ │ Redis │ │SDK Bridge│ │Auth/JWT │
│ Port:5432│ │Port:6379│ │Port:50051│ │ Service │
└─────────┘ └────────┘ └────┬───┘ └─────────┘
│ gRPC
┌──────────────┐
│ GeViScope │
│ SDK (.NET) │
└──────┬───────┘
│ TCP/IP
┌──────────────┐
│ GeViServer │
│ Port: 7700+ │
└──────┬───────┘
┌────────┴────────┐
▼ ▼
┌──────────┐ ┌──────────┐
│ Cameras │ │ GSCView │
│ (Inputs) │ │ Viewers │
└──────────┘ └──────────┘
```
---
## Component Details
### 1. FastAPI Server (Python)
**Purpose**: REST API layer handling HTTP requests, authentication, and business logic
**Technology Stack**:
- Python 3.11+
- FastAPI (web framework)
- SQLAlchemy (ORM)
- Pydantic (validation)
- PyJWT (authentication)
**Key Responsibilities**:
- Accept HTTP REST requests from clients
- Authenticate users and generate JWT tokens
- Validate request data
- Communicate with SDK Bridge via gRPC
- Store routing state in PostgreSQL
- Cache camera/monitor lists in Redis
- Audit log all operations
- Return HTTP responses to clients
**Port**: 8000
---
### 2. SDK Bridge (C# .NET 8.0)
**Purpose**: gRPC service that wraps the GeViScope SDK, translating between modern gRPC and legacy SDK
**Technology Stack**:
- C# .NET 8.0
- Grpc.AspNetCore
- GeViScope SDK (.NET Framework 4.8 DLL)
- Serilog (logging)
**Key Responsibilities**:
- Connect to GeViServer using GeViScope SDK
- Enumerate cameras (GetFirstVideoInput / GetNextVideoInput)
- Enumerate monitors (GetFirstVideoOutput / GetNextVideoOutput)
- Execute cross-switching (CrossSwitch action)
- Clear monitors (ClearVideoOutput action)
- Translate SDK errors to gRPC status codes
- Maintain connection health with retry logic
**Why Separate Service?**:
- ✅ Isolates SDK crashes from Python API
- ✅ Enables independent scaling
- ✅ Clear separation of concerns (SDK complexity vs API logic)
- ✅ Type-safe gRPC communication
- ✅ Can run on different machines if needed
**Port**: 50051 (gRPC)
---
### 3. PostgreSQL Database
**Purpose**: Persistent storage for users, routing state, and audit logs
**Schema**:
```sql
users:
- id (UUID, primary key)
- username (unique)
- password_hash (bcrypt)
- role (viewer, operator, administrator)
- created_at, updated_at
crossswitch_routes:
- id (UUID, primary key)
- camera_id (int)
- monitor_id (int)
- switched_at (timestamp)
- switched_by_user_id (UUID, FK to users)
audit_logs:
- id (UUID, primary key)
- user_id (UUID, FK to users)
- action (string)
- target (string)
- timestamp (timestamp)
- details (JSON)
```
**Port**: 5432
---
### 4. Redis
**Purpose**: Session storage, caching, and future pub/sub for events
**Usage**:
- **Session Storage**: JWT tokens and user sessions
- **Caching**: Camera list (60s TTL), monitor list (60s TTL)
- **Future**: Pub/sub for real-time routing updates
**Port**: 6379
---
### 5. GeViScope SDK & GeViServer
**GeViServer**:
- Backend service managing surveillance system
- Handles actual video routing
- Controls GSCView viewers
- Manages camera inputs and outputs
**GeViScope SDK**:
- .NET Framework 4.8 DLL (GeViProcAPINET_4_0.dll)
- Provides C# wrapper for GeViServer communication
- Uses action-based message passing
- State query pattern for enumeration
**Ports**: 7700, 7701, 7703
---
## Data Flow
### 1. Authentication Flow
```
Client → POST /api/v1/auth/login
{ username: "admin", password: "secret" }
FastAPI validates credentials
Hash password with bcrypt
Query PostgreSQL for user
Generate JWT token (1hr expiry)
Store session in Redis
Client ← { access_token: "eyJ...", token_type: "bearer" }
```
### 2. Camera Discovery Flow
```
Client → GET /api/v1/cameras
Header: Authorization: Bearer eyJ...
FastAPI validates JWT
Check Redis cache for camera list
↓ (cache miss)
gRPC call to SDK Bridge: ListCameras()
SDK Bridge → GeViScope SDK
→ CSQGetFirstVideoInput()
→ CSQGetNextVideoInput() (loop)
SDK Bridge ← Camera list
FastAPI ← gRPC response
Store in Redis (60s TTL)
Client ← { cameras: [
{ id: 1, name: "Camera 1", has_ptz: false },
{ id: 2, name: "Front Gate", has_ptz: true }
]}
```
### 3. Cross-Switching Flow
```
Client → POST /api/v1/crossswitch
{ camera_id: 7, monitor_id: 3, mode: 0 }
FastAPI validates JWT (requires operator role)
Validate camera_id and monitor_id exist
gRPC call to SDK Bridge: ExecuteCrossSwitch(7, 3, 0)
SDK Bridge → GeViScope SDK
→ SendMessage("CrossSwitch(7, 3, 0)")
GeViServer executes cross-switch
SDK Bridge ← Success confirmation
FastAPI stores route in PostgreSQL
FastAPI logs to audit_logs table
Client ← { success: true, message: "Camera 7 routed to monitor 3" }
```
---
## Security Architecture
### Authentication & Authorization
**Authentication**: JWT (JSON Web Tokens)
- Access tokens: 1 hour lifetime
- Refresh tokens: 7 days lifetime (future)
- Tokens stored in Redis for quick invalidation
- Bcrypt password hashing (cost factor: 12)
**Authorization**: Role-Based Access Control (RBAC)
| Role | Permissions |
|------|------------|
| **Viewer** | Read cameras, Read monitors, Read routing state |
| **Operator** | Viewer + Execute cross-switch, Clear monitors |
| **Administrator** | Operator + User management, Configuration |
### API Security
- ✅ HTTPS enforced in production (TLS 1.2+)
- ✅ CORS configured for allowed origins
- ✅ Rate limiting (60 requests/minute per IP)
- ✅ JWT secret key from environment (not hardcoded)
- ✅ Database credentials in environment variables
- ✅ No stack traces exposed to clients
- ✅ Audit logging for all operations
---
## Scalability Considerations
### Current Architecture (MVP)
- Single FastAPI instance
- Single SDK Bridge instance
- Single GeViServer connection
### Future Horizontal Scaling
**FastAPI Layer**:
- ✅ Stateless design enables multiple instances
- ✅ Load balancer in front (nginx/HAProxy)
- ✅ Shared PostgreSQL and Redis
**SDK Bridge Layer**:
- ⚠️ Limited by GeViServer connection capacity
- Consider: Connection pooling pattern
- Consider: Multiple SDK Bridge instances if needed
**Database Layer**:
- PostgreSQL read replicas for camera/monitor queries
- Redis Cluster for high availability
---
## Error Handling
### SDK Bridge Error Translation
| SDK Error | gRPC Status | HTTP Status |
|-----------|-------------|-------------|
| Connection Failed | UNAVAILABLE | 503 Service Unavailable |
| Invalid Channel | INVALID_ARGUMENT | 400 Bad Request |
| Permission Denied | PERMISSION_DENIED | 403 Forbidden |
| Timeout | DEADLINE_EXCEEDED | 504 Gateway Timeout |
| Unknown | INTERNAL | 500 Internal Server Error |
### Retry Logic
- SDK Bridge connection: 3 attempts with exponential backoff
- gRPC calls from FastAPI: 2 attempts with 1s delay
- Transient errors logged but not exposed to client
---
## Monitoring & Observability
### Logging
**FastAPI**:
- Structured JSON logs (Structlog)
- Log levels: DEBUG, INFO, WARNING, ERROR
- Correlation IDs for request tracing
**SDK Bridge**:
- Serilog with file and console sinks
- Separate logs for SDK communication
### Metrics (Future)
**Prometheus Endpoint**: `/metrics`
- Request count by endpoint
- Request latency (p50, p95, p99)
- Active cross-switch operations
- gRPC call success/failure rates
- Cache hit/miss rates
### Health Checks
**Endpoint**: `GET /api/v1/health`
Returns:
```json
{
"status": "healthy",
"components": {
"database": "up",
"redis": "up",
"sdk_bridge": "up"
},
"timestamp": "2025-12-08T15:30:00Z"
}
```
---
## Deployment Architecture
### Development Environment
```
Localhost:
- PostgreSQL (Docker or native)
- Redis (Docker or native)
- SDK Bridge (.NET)
- FastAPI (uvicorn --reload)
- GeViServer (C:\GEVISOFT\GeViServer.exe)
```
### Production Environment (Windows Server)
```
Windows Server 2016+:
- GeViServer (native Windows service)
- SDK Bridge (Windows service via NSSM)
- PostgreSQL (Docker or native)
- Redis (Docker or native)
- FastAPI (Docker or uvicorn behind nginx)
- Nginx (reverse proxy with SSL termination)
```
### Network Requirements
- Port 8000: FastAPI (HTTPS in production)
- Port 50051: SDK Bridge gRPC (internal only)
- Port 5432: PostgreSQL (internal only)
- Port 6379: Redis (internal only)
- Port 7700-7703: GeViServer (internal only)
---
## Technology Choices Rationale
### Why Python FastAPI?
- ✅ Modern async Python framework
- ✅ Automatic OpenAPI documentation
- ✅ Fast development cycle
- ✅ Rich ecosystem (SQLAlchemy, Pydantic)
- ✅ Easy to expand with new features
### Why C# SDK Bridge?
- ✅ GeViScope SDK is .NET Framework 4.8
- ✅ gRPC provides type-safe communication
- ✅ Isolates SDK complexity
- ✅ Can run on separate machine if needed
### Why PostgreSQL?
- ✅ Mature, reliable, ACID compliant
- ✅ JSON support for flexible audit logs
- ✅ Good performance for relational data
### Why Redis?
- ✅ Fast in-memory caching
- ✅ Session storage
- ✅ Future: pub/sub for events
### Why gRPC (not REST for SDK Bridge)?
- ✅ Type-safe protocol buffers
- ✅ Efficient binary protocol
- ✅ Streaming support (future)
- ✅ Language-agnostic
---
## Future Enhancements (Phase 2)
1. **GeViSet Configuration Management**
- Retrieve action mappings from GeViServer
- Modify configurations via API
- Export/import to CSV
- Push configurations back to server
2. **Real-Time Event Stream**
- WebSocket endpoint for routing changes
- Redis pub/sub for event distribution
- Monitor status change notifications
3. **PTZ Camera Control**
- Pan/tilt/zoom commands
- Preset positions
- Tour sequences
4. **Multi-Tenancy**
- Organization/tenant isolation
- Per-tenant GeViServer connections
5. **Advanced Analytics**
- Routing history reports
- Usage patterns
- Performance metrics
---
## Development Workflow
1. **Setup**: `.\scripts\setup_dev_environment.ps1`
2. **Start Services**: `.\scripts\start_services.ps1`
3. **Database Migrations**: `alembic upgrade head`
4. **Run Tests**: `pytest tests/ -v`
5. **Code Quality**: `ruff check src/api` + `black src/api`
6. **API Docs**: http://localhost:8000/docs
---
## References
- **FastAPI Documentation**: https://fastapi.tiangolo.com
- **gRPC .NET**: https://grpc.io/docs/languages/csharp/
- **GeViScope SDK**: See `docs/SDK_INTEGRATION_LESSONS.md`
- **SQLAlchemy**: https://docs.sqlalchemy.org
- **Pydantic**: https://docs.pydantic.dev
---
**Document Version**: 1.0
**Architecture Status**: ✅ Defined, 🔄 In Development
**Last Review**: 2025-12-08

View File

@@ -0,0 +1,724 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Class List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li class="current"><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">Class List</div> </div>
</div>
<div class="contents">
<div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><table>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_d_b_i_helper_functions.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DBIHelperFunctions</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act5e13d17b397379e7aa2a7181344c9ab4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AckAlarmByInstance</a></td><td class="indexvalue">Action 'Acknowledgement of the alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd8c37ca7223198de56c58b0a9144de0b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByInstanceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act063f5550fcf29ec2f470d35b2a8a2387.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AckAlarmByMG</a></td><td class="indexvalue">Action 'Acknowledge of the actual alarm on a moitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actbde3dc930f14428c986501743a84c810.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AckAlarmByType</a></td><td class="indexvalue">Action 'Acknowledge the alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf4d78ea3c283c8e5f4aa0e7cf225b2f1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByTypeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act8258ca0902856941b2a44390fccbaff5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AckAllAlarmsOnMG</a></td><td class="indexvalue">Action 'Acknowledge of all alarms on a moitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___action_by_name.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_ActionByName</a></td><td class="indexvalue">Action 'Execution of a named action' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_b7007199eb34b78bc3793b766d075de2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_ActionDataCorrupt</a></td><td class="indexvalue">Action 'The action data can not be found in the data base.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher242683de64e2045bef3cc9153357f78b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_33cf2d8c1908bed46399cb46386c2e2c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_ActivateAssignmentProfile</a></td><td class="indexvalue">Action 'Activate state profile' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher33d9489b6d4bb409da709873b86300ca.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActivateAssignmentProfileEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actcc0b1e862cf93e7b4e3bc62d050f5f5e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmAcked</a></td><td class="indexvalue">Action 'Alarm was acknowledged' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher537737c2f7a07d72873e25a372e119b9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmAckedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act61c98502864540892072929054fa6094.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmCopied</a></td><td class="indexvalue">Action 'An alarm was copied from one monitor group to an other' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act2c948a42dd90d26f649ef91dedf77837.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmDisplayed</a></td><td class="indexvalue">Action 'Trigger by the display of the alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher89fec1a4028f7ee01f13d4e54b3ce8dc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmDisplayedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act433f07bc94e4a634472409789f8d3d68.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmMoved</a></td><td class="indexvalue">Action 'An alarm was moved from one monitor group to an other.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3da011c707eff900c31345fe0d99bf51.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmMovedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act36d7fa51f55fc8c6e23167505f1bf469.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmQuitted</a></td><td class="indexvalue">Action 'Alarm was quitted' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere8316ec4f661e169dac83fbd5d5e0d99.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmQuittedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act4075243528d71b450eac3f79bbb0333e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmRetriggered</a></td><td class="indexvalue">Action 'Alarm was restarted (retriggered)' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actb69bac394170d5ce0507a8a76d7991fc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_AlarmStarted</a></td><td class="indexvalue">Action 'Alarm was started' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_contact_bus_actio34dee493471ff134e91278a131cc989a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ContactBusActions::GeViAct_AlternateContact</a></td><td class="indexvalue">Action 'Flash contact' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2e1af9bc74fc8711f1b2fb2c1a8c9a95.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraAutoFocusOff</a></td><td class="indexvalue">Action 'Turn off the auto focus of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher75b8c93f76dd76918dea996740dee909.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraAutoFocusOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac77df72ce621b9510d61be753773988e7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraAutoFocusOn</a></td><td class="indexvalue">Action 'Turn on the auto focus of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9e7ac63f034a2cc8847d23be4685d5d8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraAutoFocusOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acb14f2ab783096e220d455896c768d550.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraClearPrePosText</a></td><td class="indexvalue">Action 'Delete text at the predefined position' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2d2acdad5cbb4af4361750d1df1b7864.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCycleNext</a></td><td class="indexvalue">Action 'Next camera in camera cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher98769d5de4eed81e353a8c9b363e1e0e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleNextEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac56dad395b577c3a1a10b536090036ae3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCyclePause</a></td><td class="indexvalue">Action 'Pause camera cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4e161392307bf75c04d1e9dcada3c3d9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCyclePauseEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acad6032cc075425bb7eb2bd91775d5b13.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCyclePrev</a></td><td class="indexvalue">Action 'Previous camera in camera cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher962d2f3230be97aba29fad6d74b5185c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCyclePrevEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac8ffd763932e828c4bcd894c854c88281.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCycleResume</a></td><td class="indexvalue">Action 'Resume camera cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher418c962372e0feeda49fdd17e5a516e3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleResumeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_accc3483a79c37249ec2b3e55404ef3d08.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCycleStart</a></td><td class="indexvalue">Action 'Start of the camera-cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace066e4027e105c613a0d54434243a98e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraCycleStop</a></td><td class="indexvalue">Action 'Stopp camera cycle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac06b5f703754646e381ed8df258b2707e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraLightOff</a></td><td class="indexvalue">Action 'Turn off camera light' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherdf50d4c0917784e6e4b33ad99b452996.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraLightOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acf849f6ae5c4ef84a1ce8f1d1fc2288fb.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraLightOn</a></td><td class="indexvalue">Action 'Turn on camera light' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher70e8110f66c3baeefd32ecc4f04314b6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraLightOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_aca929aea95885dfcdb7b0a5ba7b628718.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraManualIrisOff</a></td><td class="indexvalue">Action 'Turn off the manual iris of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere8937ffce13a5522c9ca0dfbb8c10e06.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac907d2e7cfd4d8e7de0d46af4ca95a4d1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraManualIrisOn</a></td><td class="indexvalue">Action 'Turn on the manual iris of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ef49017c35308752582ed67005b0c56.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac346190df1f8a41baa98abc2764756f41.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraOff</a></td><td class="indexvalue">Action 'Turn a camera off' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher47a998eb8f1fcedbbf32521e9eac0102.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___camera_on.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraOn</a></td><td class="indexvalue">Action 'Turn on a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2bbfc220f82060fd64477f1d314b9252.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraPumpOff</a></td><td class="indexvalue">Action 'Turn of pump of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0dbe5aef303aa8861be2e7f0c51555ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac4e0b138e9f8640fdb93c6ee78930a3e3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraPumpOn</a></td><td class="indexvalue">Action 'Turn on pump of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf4f84c815cf6bd5e2f5220ccf47c7aab.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac27d17691e5a98b8b9f03b7b2408b5319.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraRAWOutput</a></td><td class="indexvalue">Action 'Output of a direct command to the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5851621a948e65df6e49ada537b78c1b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraRAWOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac166fa44c47b967656a0d57863a44510a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSelectCharMode</a></td><td class="indexvalue">Action 'Select character set.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac70e959db51d1e3e8790cfda527463f4b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSetCameraText</a></td><td class="indexvalue">Action 'Set a camera text' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd815c3b67111543eafaf3d26bd5e5e29.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSetPrePosText</a></td><td class="indexvalue">Action 'Set text on a predefinied position' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acdc131839c4728acfe01f2134d42cdbee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSmearAndWashOff</a></td><td class="indexvalue">Action 'Turn off wiping a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6c48441b0305d00bead30e0461c29dcc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSmearAndWashOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2b14d2abde4c75ede31e0091d8858d33.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSmearAndWashOn</a></td><td class="indexvalue">Action 'Turn on the wiping and washing of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherad32ea4b8bd95d6950744e4b49aa1c15.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSmearAndWashOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace24c33e5acbeec16b351c91dd7c67917.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpec1FuncOff</a></td><td class="indexvalue">Action 'Turn off special function 1' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere502b3aebdf5a01baa611c75f33d0948.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac70840c0f5749bf616c2ee13d56ee5924.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpec1FuncOn</a></td><td class="indexvalue">Action 'Turn on special function 1' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac04a99e62a2d6e7437a8f91dd4102832d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpecUFuncOff</a></td><td class="indexvalue">Action 'Turn off special function U' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher42bafb20728c68ba957051b36e1e19c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpecUFuncOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac45af786e5e6911ccff215c9e30e9e552.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpecUFuncOn</a></td><td class="indexvalue">Action 'Turn on special function U' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher34960ad61b67b9061731fee210545ff1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpecUFuncOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac25d1299df89bbcffbb4e102ec6198d2e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpecVFuncOff</a></td><td class="indexvalue">Action 'Turn off special function V' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher39af5a92688edefd3e38bfb14245f3f0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpecVFuncOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac3b4149372e4c1f4e856f24d42b5ea6b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraSpecVFuncOn</a></td><td class="indexvalue">Action 'Turn on special function V' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2fd352ff543c0d25aaf2e451d302ca5c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpecVFuncOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac503af7b5fdd8da7bf6ae797977a8d1e5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraStopAll</a></td><td class="indexvalue">Action 'Turn on displaying of firmware version' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac6c1ed76c662fdab900c68c8a03767e5b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTextOff</a></td><td class="indexvalue">Action 'Turn off the camera text' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4950cd63d3b23260633cb104e6d0941a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTextOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acf72bc1d036c7a00cb8b72961c1f7ecf4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTextOn</a></td><td class="indexvalue">Action 'Turn on the camera text' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher746da9093c75575dee9fb903b489ec07.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTextOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac077a3bb3cfc5a14404a0604d2e86aaf3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourNext</a></td><td class="indexvalue">Action 'Next position in the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher013b749d0d1a66314b35f5e1d1f3db49.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac3f461703a1a8d522048a8e1fe55eeae3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourPause</a></td><td class="indexvalue">Action 'Pause the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb020727828b0189a6a652b351bfc24d9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPauseEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace99dbbaa09e3cc775e8f19bf49352809.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourPrev</a></td><td class="indexvalue">Action 'Previous position in the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace9404e312313543832f2f8b23990603d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourResume</a></td><td class="indexvalue">Action 'Resume the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2e3b55b9476b27d90b11534acfdaee44.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourStart</a></td><td class="indexvalue">Action 'Start of the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher29c1d5ad0454331b91763b59f2a68b1e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourStartEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac735dc262934fc689bc58435b27f4bc08.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraTourStop</a></td><td class="indexvalue">Action 'Stop the camera tour' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9a5687d920721491aea6f9c583661d3e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac49b38f8b180d9be32b40ff502d731ae8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_CameraVerOff</a></td><td class="indexvalue">Action 'Turn off displaying of the firmware version' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf3a2d33f4b6137e791ace5a63c8d0f71.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraVerOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_d4683477e2c0dde8a538c2824c1927e3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_ChangeRightProfile</a></td><td class="indexvalue">Action 'Change right profile of a user' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac0f8f3dedf0e6d3e3a47afb18541ec58b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_ClearAlarmFlagVideoInput</a></td><td class="indexvalue">Action 'Clear the alam flag of a video input. - Attention - the video input will not cleared.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher23896b4a440f535feb1095ac6889c780.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_acf0cbe864f9118c8f365e12dcda201960.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_ClearAlarmFlagVideoOutput</a></td><td class="indexvalue">Action 'Clear the alarm flag of that video output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9103e2bc1cd81f3281e7b5d1970058d3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_acb4423dfb31187664220536ed213be181.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_ClearVideoOutput</a></td><td class="indexvalue">Action 'Clear that video output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2e27c260f31a0e6d58063c695ef4117f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearVideoOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_contact_bus_actio70d4906d8350138d0248a23f22d1e0d7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ContactBusActions::GeViAct_CloseContact</a></td><td class="indexvalue">Action 'Close a contact' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd3e198e812bdd713742e4f1116a5d94b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CloseContactEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actee344566be807e8a441b32ed3ef82385.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_CopyActualAlarm</a></td><td class="indexvalue">Action 'Copy actual alarm to an other monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6a3da7c4407480a0da6df81bd3889546.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyActualAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actb0b0cf402346621897f68420ad4972ea.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_CopyAlarmByInstance</a></td><td class="indexvalue">Action 'Copy the alarm to an other monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac6912b04320b28f8ddc8df30f548f05d1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_CopyCameraOnMonitor</a></td><td class="indexvalue">Action 'Copy a video input from one video output to another one.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac74374840d3981445c11587a381cff651.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_CrossSwitch</a></td><td class="indexvalue">Action 'Switch a video input on a video output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac5476a9bfacecf602c21ed7bb83e1fe0e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_CrossSwitchWithAlarm</a></td><td class="indexvalue">Action 'Switch a video input on a video output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc6088fa7a61bdb93834ac300506e9edf.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchWithAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___custom_action.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_CustomAction</a></td><td class="indexvalue">Action 'Customized action' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher719155305e65b7d0ab543fef4380fdfe.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CustomActionEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_actions3b14c99019a54b096f2832e334c6e2f7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseActions::GeViAct_DataBaseFailure</a></td><td class="indexvalue">Action 'Database failure.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_actionsdb46746c9c3716b14f578ee71c398358.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseActions::GeViAct_DataBaseMissing</a></td><td class="indexvalue">Action 'Missing database' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3430dae215bcd5eb3fcbea778cd3e06e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseMissingEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_actions6c8bf9113ff62387c3494a79ba2ae7bf.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseActions::GeViAct_DataBaseReady</a></td><td class="indexvalue">Action 'The database is ready.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2baa2ac3090fb9e00a643f3f6ab71397.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseReadyEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac72a8e7fee7a8c4292a3837c6bf8d07f7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_DefaultPosCallUp</a></td><td class="indexvalue">Action 'Move camera to a base position' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acb307bac8b6fe82a19d520f40d6437dfd.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_DefaultPosClear</a></td><td class="indexvalue">Action 'Clear base position of a camera.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher01d60c532f12bd63dacb15af4cd26649.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acf9d8db4271791faf00ef5e7b798ebe1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_DefaultPosSave</a></td><td class="indexvalue">Action 'Save the base position of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___disconnect_user.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_DisconnectUser</a></td><td class="indexvalue">Action 'Explizit logoff of a user' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcheraf6d67c47e3cb3553343277185dcc83d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DisconnectUserEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___event_relation.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_EventRelation</a></td><td class="indexvalue">Action 'Event relation was triggered' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb432881c8baaa8b8dd637595bf941c95.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_EventRelationEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___event_started.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_EventStarted</a></td><td class="indexvalue">Action 'Start of event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4777e8735ff4df04061e2ca7b106a363.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_EventStartedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___event_stopped.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_EventStopped</a></td><td class="indexvalue">Action 'Stopp of event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercd769550bce8b9c18a7f04da08348a85.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_EventStoppedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac39a80f3270228e2739101e22263ad9d0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_FastetModeOn</a></td><td class="indexvalue">Action 'Turn on the fast mode' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher50cfabba59cece64036d16399f500cd6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FastetModeOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___focus_far.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_FocusFar</a></td><td class="indexvalue">Action 'Set camera focus farer' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcheree706929e4510f87f4daa51dbdbc1b01.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusFarEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2821f4193a41354478779781300ba03f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_FocusNear</a></td><td class="indexvalue">Action 'Set camera focus nearer' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac02c89bbf0a3c901a8aea2fb0ede7ead2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_FocusStop</a></td><td class="indexvalue">Action 'Stopp the focussing of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere699f16f29655143b2d45035456871aa.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_gevi_scope_action3ed4686561b81bbbbf228b9367516566.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeviScopeActions::GeViAct_GeviScopeServerConnected</a></td><td class="indexvalue">Action 'GeviScope server connected' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchera8611420444872653acb12a473792464.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_GeviScopeServerConnectedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_gevi_scope_actionfe83f1c81b6b7c07489af501d19efd0a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeviScopeActions::GeViAct_GeviScopeServerConnectionFailed</a></td><td class="indexvalue">Action 'Open GeviScope connection failed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher82a3046d157d5c34602ef515b3f211d8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_GeviScopeServerConnectionFailedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_gevi_scope_actionda873114b08d17ec73d5f3d46795736b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeviScopeActions::GeViAct_GeviScopeServerDisconnected</a></td><td class="indexvalue">Action 'GeviScope disconnected' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4bc267ecad007631464cedb85ca86a99.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_GeviScopeServerDisconnectedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher84a4786ba7d54e7e9ed8593f9f78a03f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_GscActionEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___historical_alarm.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_HistoricalAlarm</a></td><td class="indexvalue">Action 'Historical alarm message.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher735f99a393dd19be53d6d6103b6a854f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_HistoricalAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___historical_input.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_HistoricalInput</a></td><td class="indexvalue">Action 'Historical contact message.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercdea58843d90a43d66825cc1093f1494.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_HistoricalInputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiofc260773bdb776fae005f61543a01042.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorCameraOutput</a></td><td class="indexvalue">Action 'Output command to the connected camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3c6b9629a1c5f342c3ee6c4f40e199df.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorCameraOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio0b6323fe3cfc31eb8edd27df8c6daf05.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorDimLevel</a></td><td class="indexvalue">Action 'The current dim level of the illuminator' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherab204ee9b4da529f4676f75fa892551c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorDimLevelEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio0005475de81c062135c4f675553ff9c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorGetDimLevel</a></td><td class="indexvalue">Action 'Get the dim level of the illuminator' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b869e2783f4cd886da5be97f891cd04.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiocbe7e48fbb6673d9e32b2f03067424ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorLightOff</a></td><td class="indexvalue">Action 'Turn off the illuminator light' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b554a10f8561089bb628f68e7a27f4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio97830a5200a4d2a8732332325594cd1f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorLightOn</a></td><td class="indexvalue">Action 'Turn on the illuminator light' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher305cdc4af454d6b1a7f3b0e6281d53a6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio6273fb1ee1494246d8d062dde62af71c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorOff</a></td><td class="indexvalue">Action 'Turn off the illuminator' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2ea54c83fc95ec6d5199dcce92f203f8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio7443b6999b97c0f92d8c478789c392f3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorOn</a></td><td class="indexvalue">Action 'Turn on the illuminator' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher74af7df210570404e2b4b8a647cea67f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio68b319d7bf23cb7107f916103aca6400.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSetDimLevel</a></td><td class="indexvalue">Action 'Set the dim level of the illuminator' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchera5c0209fea280eaf0428e12d222b84f2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSetDimLevelEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio41941065900cc32f11556232a395f600.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncUOff</a></td><td class="indexvalue">Action 'Turn off the special function U' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher072cc8822f79d6d225234a9704296d36.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio55a6d4a8e9b8646c141ac9460b53c684.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncUOn</a></td><td class="indexvalue">Action 'Turn on the special function U' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7883ca4614f4626b5b4bc42b4bebab3e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio973605781a706d8845d32031b64ac395.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncVOff</a></td><td class="indexvalue">Action 'Turn off the special function V' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher946a90736b678a5edcc82bb045f6566d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncVOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio766c73fea425ed880357db519e787caf.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncVOn</a></td><td class="indexvalue">Action 'Turn on the special function V' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6df7a07d4c9fad574e5a2478855c5659.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncVOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actioc204e059ed850cf85e498590cf4e2ff5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncXOff</a></td><td class="indexvalue">Action 'Turn off the special function X' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4a53af3a4f868be4f5432f4a8d6afc49.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiob501fb174f15395e0878991256ca5635.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncXOn</a></td><td class="indexvalue">Action 'Turn on the special function X' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher014d88aa7f3f6c4be28494dee78768cb.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actioeee7a04fed6a6998ea09e0aa9351d362.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncYOff</a></td><td class="indexvalue">Action 'Turn off the special function Y' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher867409a1db3e586177bbb202ef0a281e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncYOffEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actioca8a3b226bdd4b736f39936e7fd093b7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::IlluminatorActions::GeViAct_IlluminatorSpecFuncYOn</a></td><td class="indexvalue">Action 'Turn on the special function Y' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5f45c4b305787f1241e93a3ebc15fb59.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncYOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___inform_all_users.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_InformAllUsers</a></td><td class="indexvalue">Action 'Send a message to all users' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher702bdb271eabb1b510cb35e35bd17184.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InformAllUsersEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_76870519d504e07ab4ae713fd10e4103.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_InformAllUsersMSG</a></td><td class="indexvalue">Action 'Send a message to all users' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbc5d125fe9c3c777f17b19256e01c027.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InformAllUsersMSGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___inform_user.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_InformUser</a></td><td class="indexvalue">Action 'Sending of a message to a user.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher519c0a538039611aec4978c6cd184eec.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InformUserEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___inform_user_m_s_g.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_InformUserMSG</a></td><td class="indexvalue">Action 'Send a message to user' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9479b30bed315721304702e3eff7de78.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InformUserMSGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_contact_bus_actio3c369269f3b8409880dcf7dac368a24c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ContactBusActions::GeViAct_InputContact</a></td><td class="indexvalue">Action 'Input event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher810c38c7582d69f14169d689b3147b90.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InputContactEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_contact_bus_actio4ea38bf1037d3c19083ff0e8c36d7294.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ContactBusActions::GeViAct_InputContactSabotage</a></td><td class="indexvalue">Action 'Input event sabotage notification' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a1ac3671233231e395a0ca4faaafa75.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_InputContactSabotageEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac4973164720483a5c0d91cba2ec6293c7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_IrisClose</a></td><td class="indexvalue">Action 'Close camera iris' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher68a6ec7d0dc60a6374697d83cddfcfd5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisCloseEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___iris_open.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_IrisOpen</a></td><td class="indexvalue">Action 'Open the iris of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___iris_stop.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_IrisStop</a></td><td class="indexvalue">Action 'Stopp closing the iris' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6be921289e958e18b2d5ce6be0aa4e27.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_last_action.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_LogLastAction</a></td><td class="indexvalue">Action 'The input action of the current action mapping will be logged.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d55bc9f27bb7c0dcdd654b2e5dc6199.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_message.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_LogMessage</a></td><td class="indexvalue">Action 'Log message' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_message_m_s_g.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_LogMessageMSG</a></td><td class="indexvalue">Action 'Logging of a message' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere2fdb1c8d24f7cfa97ee177cca4e3bd6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageMSGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_source_action.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_LogSourceAction</a></td><td class="indexvalue">Action 'The input action of the first action mapping of this action mapping chain will be logged' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6734e7e491e1a7975069bcd9101b79ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogSourceActionEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act48431bfc70588df2e29bbdea4db18aa7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MBegAlarmAck</a></td><td class="indexvalue">Action 'AlarmAck-report at a MBeg' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc3efe8adb630c8b0eab390ee4b1c3cf3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmAckEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actd06fd5af2c3cabded3fe3a8201b41dd2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MBegAlarmQuit</a></td><td class="indexvalue">Action 'Report of the alarm quitting to a MBeg' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act0c2e6958c765acf0ecde8d26db14d35b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MBegAlarmStart</a></td><td class="indexvalue">Action 'Report of a alarm start at a MBeg' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher28eacc380e718384d43f0da293a349c6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmStartEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acb2773e6f74d5ded3a2003423b5f253a8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_MBegInitRequest</a></td><td class="indexvalue">Action 'Request of a MBeg initialization sequence' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6b4fcb5f45e7770909a587ff63f0716c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegInitRequestEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac80753a1dcce7ecc55ce8c1d0fec10b6d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_MBegInitSeq</a></td><td class="indexvalue">Action 'MBeg init sequence' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb2ddd084d39813ef339f1ea413cf561d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegInitSeqEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd73c9f90f97f9c3494a8d06657ffd47a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_MBegLockCamera</a></td><td class="indexvalue">Action 'Request the exclusive PTZ control' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac5abf1cf8c2f9463df9d5500ab7a29f36.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_MBegUnlockCamera</a></td><td class="indexvalue">Action 'Release the exclusive PTZ control' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3aa68e0b8353de101ee1ddc5a6d4186c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegUnlockCameraEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_103a02e0570d5f038f9a7575491b10c34.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAlarmAuxiliaryInput</a></td><td class="indexvalue">Action 'MIP alarm auxiliary input' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6ca385f2f0eeab445bad511f7c85e484.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAlarmAuxiliaryInputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_alarm_cable.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAlarmCable</a></td><td class="indexvalue">Action 'MIP alarm cable' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher29a902b20b074fe4f654fe2a2314e726.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAlarmCableEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1a9c241b8a61e4a6df0f2de153d0d53aa.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAlarmLUTamper</a></td><td class="indexvalue">Action 'MIP alarm LU tamper' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf5eb96031a2bc44789d999039438b9b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAlarmLUTamperEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1b6985e40ac302cf512c222f22e83078e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAlarmPMTamper</a></td><td class="indexvalue">Action 'MIP alarm PM tamper' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbeee67bc3a141cb3cf8e8e2b2230613c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAlarmPMTamperEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1ee10420c55f63fa423730bbad6920c6f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAlarmRMTamper</a></td><td class="indexvalue">Action 'MIP alarm RM tamper' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherac5298c6f3a6d527fc6576f2092d1abe.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAlarmRMTamperEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1565efa83261c0d091b64003e350dbbd5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAuxiliaryAlarmState</a></td><td class="indexvalue">Action 'MIP auxiliary alarm state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1f0f5172d1230fbc4777dfd867b538229.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPAuxiliarySensorStatus</a></td><td class="indexvalue">Action 'MIP auxiliary sensor status' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere1db223f802ed87b7af71eab1fe82ab6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliarySensorStatusEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_11459ab61f2024e5e986b30f32d6cf870.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPCableAFaultState</a></td><td class="indexvalue">Action 'MIP cable A failure state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherfc7f3a0cb620bcb956938ee73e31dd1f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableAFaultStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_13948144b78811cf17e77de96c35ce8b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPCableBFaultState</a></td><td class="indexvalue">Action 'MIP cable B failure state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1dd3b87ad03f4637dad6978e1c4c6d92a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPDisplaySegmentAlarmState</a></td><td class="indexvalue">Action 'MIP display segment alarm state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf1b7ec1104b3c0edc274e150a4cbb80e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentAlarmStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1dd5da2c2d882c06bd05365e4a43cdf26.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPDisplaySegmentStatus</a></td><td class="indexvalue">Action 'MIP display segment status' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_18dbbc49429ada6078b1efa1d727532ec.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPLUTamperAlarmState</a></td><td class="indexvalue">Action 'MIP LU tamper alarm state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherfa369583fa7544a2cdd2ec316968ddc4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPLUTamperAlarmStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1f92df94a20bd4f579a8dffda5d026201.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPLUTamperStatus</a></td><td class="indexvalue">Action 'MIP LU tamper status' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc49abcfe7aa7d4d946181158dc3470aa.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPLUTamperStatusEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_offline.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPOffline</a></td><td class="indexvalue">Action 'MIP interface offnline' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_online.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPOnline</a></td><td class="indexvalue">Action 'MIP interface online' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1d1420de2fc6fa5676d1d22f8007cb53.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1be7a8793e16e3b339702aacdb11dcb56.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPPMComFailState</a></td><td class="indexvalue">Action 'MIP PM COM failure state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1ab3dc09e098e7c3f1667571689cea8dc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPPMTamperAlarmState</a></td><td class="indexvalue">Action 'MIP PM tamper alarm state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3ba9fa2e6e405fefe695f11ec034c37f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMTamperAlarmStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1426910812b356e3492233b1f02ec5cee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPPMTamperStatus</a></td><td class="indexvalue">Action 'MIP PM tamper status' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere74b380109e9c683b56b409056a72479.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMTamperStatusEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1690078730ae31988cfca3a3489273827.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPQueryInterface</a></td><td class="indexvalue">Action 'MIP query interface' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher53ae7479fbb6ae64c2e0a0de679c8e0b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPQueryInterfaceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1779397b8d06e7b19de879650bb8eb518.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPRMComFailState</a></td><td class="indexvalue">Action 'MIP RM COM failure state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc30a80ee731a87aea70b32e2416a7d15.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMComFailStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1fc0014a0bce3848a5defaece625d42be.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPRMTamperAlarmState</a></td><td class="indexvalue">Action 'MIP RM tamper alarm state' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1c37f8d225d72346b64f288fc00112ab1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPRMTamperStatus</a></td><td class="indexvalue">Action 'MIP RM tamper status' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1e7a8ffa152854ec57b79f83625b8b73e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureAuxiliarySensor</a></td><td class="indexvalue">Action 'MIP secure auxiliary sensor' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb708bb7b3629a72b1576984f950d9b79.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureAuxiliarySensorEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_18a23517e5b542cec771bbe3ddf008c92.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureAuxiliaryTP1</a></td><td class="indexvalue">Action 'MIP secure TP 1' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher86da484eaeea75877e471a779f676b6e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureAuxiliaryTP1EventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1d6ebb05f673e86cb4397121d5ef54b23.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureAuxiliaryTP2</a></td><td class="indexvalue">Action 'MIP secure TP 2' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8738f55f548d9061d6a998beded74be6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureAuxiliaryTP2EventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1a21387ab3dd58bc0470ffcb90d6ac36e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureDisplaySegment</a></td><td class="indexvalue">Action 'MIP secure display segment' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher37369b3b8e35ffc9445cb55e11375762.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureDisplaySegmentEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_secure_l_u.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureLU</a></td><td class="indexvalue">Action 'MIP secure LU' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_secure_p_m.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecurePM</a></td><td class="indexvalue">Action 'MIP secure PM' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf0a85150a2685d3241c49f2be4f23980.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecurePMEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_secure_r_m.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPSecureRM</a></td><td class="indexvalue">Action 'MIP secure RM' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere4ebd7a1f52292c0f93a5f3d46da9fe2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureRMEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_19237e082a1799965770393b97c55b6d1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPTurnARelayControl</a></td><td class="indexvalue">Action 'MIP turn a relay control' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6aa941e77f5e51a4dbe287b9cc18181e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPTurnARelayControlEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1103e01b0a0ad0466c4c51771c107bfb8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MIPActions::GeViAct_MIPTurnRelaysOnOneZone</a></td><td class="indexvalue">Action 'MIP turn relay on one zone' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2c29f833aed183a35e59a8bf4aa8d87.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPTurnRelaysOnOneZoneEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act25c24c3f8d946cc8daae8f8fd92eb751.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MonitorGroupDisable</a></td><td class="indexvalue">Action 'Disable monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherefa6eb01eed30b6a7f8105400b82bc71.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupDisableEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act102e974098ece949bb5c1e53b85c10e4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MonitorGroupEnable</a></td><td class="indexvalue">Action 'Enable monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20b3c555186d5bb649de3136d0296895.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actb0089076e7ed61d089f73aba92199f2c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MonitorGroupStatusChanged</a></td><td class="indexvalue">Action 'State of a monitor group has changed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher48101e5f6e096b5f87f93368c3ac4c21.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupStatusChangedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act1b8209878271601fd2bd2d58086269e7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MoveActualAlarm</a></td><td class="indexvalue">Action 'Move alarm to an other monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act8112e07fc5c8e7588a2707a7c862ec8d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_MoveAlarmByInstance</a></td><td class="indexvalue">Action 'Move the alarm to an other monitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1caafc1c6fe4409d48a8868235eda51ed.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscEventStarted</a></td><td class="indexvalue">Action 'Start of the event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5d6751380a2d22b53fe044147df8dbea.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscEventStartedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_130100e58e7eb6e4935ef999aa0087ee9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscEventStopped</a></td><td class="indexvalue">Action 'Stopp of an event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbb69bfe1426e54f8b29105bb52170db4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscEventStoppedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1653f3138388bde3cbff31aa374c3f3e9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscServerConnected</a></td><td class="indexvalue">Action 'MULTISCOPE connected' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb57dfb40f2831f337f1289eaa8488753.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerConnectedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_15fb93ed2a9489eb32de2f5cf44b2708c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscServerConnectFailed</a></td><td class="indexvalue">Action 'Open MULTISCOPE connection failed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3fb806f281a7b1681f85c2369969b1d6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerConnectFailedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1707e77a9951a53e34b39ca3010030dbc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscServerDisconnect</a></td><td class="indexvalue">Action 'Close MULTISCOPE connection' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1f0326b1526d9a951eccb115aa7440d87.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscServerDisconnected</a></td><td class="indexvalue">Action 'MULTISCOPE disconnected' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9cd09df5313913c71959bedf95868948.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1fc18f70792850f3d9eae354ccb9e4d81.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_MscSetupModified</a></td><td class="indexvalue">Action 'MULTISCOPE Setup changed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd33dedd5bcc375fde6c854887d36ce32.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscSetupModifiedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acadbd2074dc114cc4d6a8fd9224406869.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_NormalModeOn</a></td><td class="indexvalue">Action 'Turn on normal mode' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_contact_bus_actions_1_1_ge_vi_act___open_contact.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ContactBusActions::GeViAct_OpenContact</a></td><td class="indexvalue">Action 'Open contact' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___pan_auto.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PanAuto</a></td><td class="indexvalue">Action 'Automatic panning of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher96f6f8291cae17673638704090235b06.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PanAutoEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___pan_left.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PanLeft</a></td><td class="indexvalue">Action 'Pan camera to the left' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher92a1a28bddd843d154a5a7291c347e68.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PanLeftEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___pan_right.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PanRight</a></td><td class="indexvalue">Action 'Pan camera to the right' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9ee953f9e42c481ce69312f5b3c2ac81.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PanRightEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___pan_stop.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PanStop</a></td><td class="indexvalue">Action 'Stopp panning of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchereb5119ecb59d758f5193779d2713e211.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PanStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actc7f89282b6e762db5c0d044bb88a1533.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_PopUpAlarm</a></td><td class="indexvalue">Action 'Display alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_acte36c29a5e91af9347b2a4c9b6fbc6283.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_PopUpNextAlarm</a></td><td class="indexvalue">Action 'Send the actual alarm back in the queue and send the next to the monitors' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acf78d63333e0bb364bbd4cdcff32c335e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PrePosCallUp</a></td><td class="indexvalue">Action 'Move camera to a fix position' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherde566713468a5afe3201f83a7bad3d3c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PrePosCallUpEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_aca82723743e9d94f2259ad7750c7b418e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PrePosClear</a></td><td class="indexvalue">Action 'Clear fix position of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher889bf4026b531165cce08826829899ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PrePosClearEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac6a3177e4bcc0e14354a509a23973457d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_PrePosSave</a></td><td class="indexvalue">Action 'Save a fix position of a camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb723c858de75c40716ecb4de397afb00.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PrePosSaveEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actb5737fe6e99d1273deafc54796e15004.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_QuitAlarmByInstance</a></td><td class="indexvalue">Action 'Quitting a alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_acta7d97edf8172e0e215838a00a938aea0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_QuitAlarmByMG</a></td><td class="indexvalue">Action 'Quit an actual alarm on a monitorgroup' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2d3f6ec301ffe40fcc33564bdc1eb8b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByMGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act014684663dd22ed53d34252a0ac0415d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_QuitAlarmByType</a></td><td class="indexvalue">Action 'Quitting an alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9ce0f0c029d8fbd91aeb69eb94750aca.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByTypeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act7dabfbad2eea01421fd5d3c57012c4c6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_QuitAllAlarmsOnMG</a></td><td class="indexvalue">Action 'Quit of all alarms on a moitor group' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___red_change_master.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedChangeMaster</a></td><td class="indexvalue">Action 'Set new server as master' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_e0f25527b6e02314064ad3076f4cd638.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedConnectionMasterChanged</a></td><td class="indexvalue">Action 'Connection master was changed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4b720f99df57ccd7b7c01b6828d50ac1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedConnectionMasterChangedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___redirect_resource.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedirectResource</a></td><td class="indexvalue">Action 'Redirect resource.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherda4748754d0f1b57743c32af2815529e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedirectResourceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1fa09e1195026f710365ab709284beaf.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedMasterServerChanged</a></td><td class="indexvalue">Action 'Master server was changed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf61dd63858891436c8d0e1c2befcaee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedMasterServerChangedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_c1bc857349397ace467448c9d275260b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedRedundantLoginFailed</a></td><td class="indexvalue">Action 'Redundant login failed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher587ee09267e8073e665868ea180224e7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedRedundantLoginFailedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_a71b1defaa313868874c74b04fb38e94.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RedRedundantUserLogin</a></td><td class="indexvalue">Action 'Redundant login successful' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf46ab28127f647a6766c2cece8b0df39.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedRedundantUserLoginEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___rescann_request.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RescannRequest</a></td><td class="indexvalue">Action 'Request to all users to perform a rescan' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere75d4211a121bf43677a954a48c5ba41.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RescannRequestEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_ac4342b48be68308e9e691ae9e8ace7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RescannRequestToClient</a></td><td class="indexvalue">Action 'Request to a user to perform a rescan' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher51af3406627d1641f35105889fde0496.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RescannRequestToClientEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_550c85b88afd350f871178fc7747f174.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_RestoreRightProfile</a></td><td class="indexvalue">Action 'Restore right profile of a user' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher562d1675fdeb962d3672cbe55b0dee91.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RestoreRightProfileEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___send_raw_data.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SendRawData</a></td><td class="indexvalue">Action 'Output the data to a RAW- or any other serial interface' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher857e2db6dc7e02af08f34148c595b9ab.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SendRawDataEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_393ccd171ff500e8f175ca586af5c5b5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SendRawDataMSG</a></td><td class="indexvalue">Action 'Output the data to a RAW- or any other serial interface' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6acb4537f0a4208808893cdbf08b76b9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SendRawDataMSGEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act9085203145714b58a877163f77c58006.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::AlarmControlActions::GeViAct_StartAlarm</a></td><td class="indexvalue">Action 'Start of a alarm of a special typ' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___start_event.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_StartEvent</a></td><td class="indexvalue">Action 'Start of event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher94e680e6d9e93991f45fef37e0c8b3dc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartEventEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1_1_ge_vi_act___start_msc_event.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_StartMscEvent</a></td><td class="indexvalue">Action 'Start of MULTISCOPE event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___start_timer.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_StartTimer</a></td><td class="indexvalue">Action 'Start timer' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3991619caea6692c9112cb682a01b74b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartTimerEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_edb7386f4a391b07163f0d9f0b214817.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_StopEventByInstance</a></td><td class="indexvalue">Action 'Stopp the event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere2dccb7d1e792446a31b6969d6df48ab.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopEventByInstanceEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_7a2007c3dcd04ab0bc206a0e34693181.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_StopEventByType</a></td><td class="indexvalue">Action 'Stopp the event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchered4ee6b0d9652fbeb6080be247a38f7b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopEventByTypeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1_1_ge_vi_act___stop_msc_event.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::MscIIActions::GeViAct_StopMscEvent</a></td><td class="indexvalue">Action 'Stopp a MULTISCOPE event' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf1e370d6aa3d0ea43473f639dac0bc47.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopMscEventEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___stop_timer.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_StopTimer</a></td><td class="indexvalue">Action 'Stopp the timer' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___sync_time_request.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SyncTimeRequest</a></td><td class="indexvalue">Action 'Request to all users to perform a time synchronization' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc3e657f9d80dac51509c347a4f38124d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SyncTimeRequestEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_6d41d47666546793014e14af44d0a53d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SyncTimeRequestToClient</a></td><td class="indexvalue">Action 'Request to a user to perform a time synchronization' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf942a4565587fe0c916bdd6260d8680d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SyncTimeRequestToClientEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_9b14850d44c61d30853b7ea3086dc928.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SyncTimeSetTime</a></td><td class="indexvalue">Action 'Explizit setting of date and time' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_cbc977b74283fb02a9f8596f939b04f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SyncTimeSetTimeActual</a></td><td class="indexvalue">Action 'Explizit setting of date and time' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5d875e2f8fd5dd67d6603853f34dad95.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SyncTimeSetTimeActualEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_845b6ecfef71c9183fee5bd11963fe8d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SyncTimeSetTimeClient</a></td><td class="indexvalue">Action 'Explizit setting of date and time' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere28be0b6fed24d260da2e0959a0df267.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SyncTimeSetTimeClientEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher351b9397a39afac73daa895107fe4783.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SyncTimeSetTimeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___system_error.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SystemError</a></td><td class="indexvalue">Action 'System error' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher64eb8d6efeccd1bdbe4d8abd43eb9e14.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemErrorEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_d60f09fdb1bccbbe8b20be516b1d7dc3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SystemSettingsChanged</a></td><td class="indexvalue">Action 'System settings changed.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere5623f442c64de8e6bc9ccf28d88280a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemSettingsChangedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___system_started.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SystemStarted</a></td><td class="indexvalue">Action 'The system is starting.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStartedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___system_stopped.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SystemStopped</a></td><td class="indexvalue">Action 'The system is stopping.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf2c685aba24497cb998db8ea871e71f4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStoppedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___system_warning.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_SystemWarning</a></td><td class="indexvalue">Action 'System warning' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchera464dbd8184dd50a1efc76aa79d36388.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemWarningEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_accecfb818ed66bd5f523652956e7cef00.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_TakeCameraControl</a></td><td class="indexvalue">Action 'Take over camera control' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8c93abc1a3b9f1cfbe0c316befe73158.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TakeCameraControlEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___tilt_down.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_TiltDown</a></td><td class="indexvalue">Action 'Incline the camera down' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd76aae38ed47f934ac18bf0345917fa2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TiltDownEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___tilt_stop.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_TiltStop</a></td><td class="indexvalue">Action 'Stopp the inclinig of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9eed407041b9f00b4faf7872dd6165fe.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TiltStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___tilt_up.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_TiltUp</a></td><td class="indexvalue">Action 'Incline camera up' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4b92252aa38d38fc06b5f9cbc5a5dca9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TiltUpEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_time_ranges_actio4f1c63e6ebfb9748e200a7f4e7708e0c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::TimeRangesActions::GeViAct_TimeRangeEnded</a></td><td class="indexvalue">Action 'Cancel time range' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher86c00ec0e128d84af556e63d0b926f42.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TimeRangeEndedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_time_ranges_actiofd3a90b63e37020e879b3e6c3956323e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::TimeRangesActions::GeViAct_TimeRangeStarted</a></td><td class="indexvalue">Action 'Start of the time range' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc94ba16582a8287d102e496f5532cd4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_TimeRangeStartedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___user_login.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_UserLogin</a></td><td class="indexvalue">Action 'User has logged in.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___user_login_failed.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_UserLoginFailed</a></td><td class="indexvalue">Action 'Login failed.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5d506ef23aef5c375d8cbfe0da8ee02b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginFailedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___user_logout.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SystemActions::GeViAct_UserLogout</a></td><td class="indexvalue">Action 'User has logged out.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher37aabf71c5273f6af907acc49e946625.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLogoutEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac06708758e4bf7022025edcb31aa2c7e0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoClearTextOut</a></td><td class="indexvalue">Action 'Clears the free text' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc62a2bdf4585b9ca05c49b0023ef1de8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoClearTextOutEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac6c2f4ef17f5dcf71f4d65648e8a04c5e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoContrastAlarm</a></td><td class="indexvalue">Action 'The image is disturbed.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4c4c4d42422e57aaebfcbe3aedc9c241.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoContrastAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac340ecc74d3816425df22606719a59fe6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoContrastOk</a></td><td class="indexvalue">Action 'The contrast is OK again.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherab3c7643bd05546e063d5efae8c85ac7.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoContrastOkEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_acf72a3846abc220b0a18d339f11382838.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoContrastPreAlarm</a></td><td class="indexvalue">Action 'The contrast is critical.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherfaa06bb5a61f339bd81e3254fec43116.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoContrastPreAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac1f56ec783e8a7b92ae2fd36d6952d352.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoSyncFailure</a></td><td class="indexvalue">Action 'Sync-signal failure.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher392c0289c5288e55923ea0493833e22c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoSyncFailureEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac935b35171c3f1fda5de5328fb8e3c100.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoSyncOk</a></td><td class="indexvalue">Action 'Sync-signal works correct again.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7ae3300c8b2eaa6ea744d592e2278cc1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoSyncOkEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac8664c7a119149314d7f41ebb4f0772ae.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VideoTextOut</a></td><td class="indexvalue">Action 'Display free text on that video output.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherca3af3886d5caf5603e42ba10404a4b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoTextOutEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_aca9de56d76a3c622fef7105e231dfb5fb.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_VideoThresholdRequest</a></td><td class="indexvalue">Action 'Internal action requests the threshold value of an input' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acc7eae752f2283e638cfab8e957c40d9b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_VideoThresholdValue</a></td><td class="indexvalue">Action 'Internal action, return of the threshold value of an input' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9819b3c8f744a43e1c1e5afa914dfed6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdValueEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti59475e513ef62f452270ab75b50e4cd5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VS30PMMode</a></td><td class="indexvalue">Action 'Mode is 'Working' or 'Setup'' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchera82794c582b1c92e0c181689d6f4d434.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VS30PMModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti4b5c146465a72c2afa2472ab9cd82cd9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VS30VMDMode</a></td><td class="indexvalue">Action 'Mode of the VMD' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher638519a7c54be092c86105961d233524.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VS30VMDModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti763eed56dfd3cf25aa7418e36120d859.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSAlarmEnd</a></td><td class="indexvalue">Action 'Alarm has finished.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9850731b4c084b8746c82b502b4cca85.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmEndEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti16229e7e4c0c65b4091bab198ef51ed1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSAlarmExtern</a></td><td class="indexvalue">Action 'External alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher11500dfdc922b941f26da7091f18ebd0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3e47c67e6c6b87beb3ae622a7490e37a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSAlarmInField</a></td><td class="indexvalue">Action 'Alarm in a field' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti82f9ce5a79e61773a43d7da4847cc512.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSAllTestAlarm</a></td><td class="indexvalue">Action 'Test alarm for all VMD's of one client.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti1d5137454649976f256dba006abb47ec.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSAllTimerReset</a></td><td class="indexvalue">Action 'Reset of the timers of all VMD of a client.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2efe5c6a3f6b50ff60e41d28c21fe369.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTimerResetEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actions_1_1_ge_vi_act___v_s_armed.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSArmed</a></td><td class="indexvalue">Action 'VMD armed or disarmed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf25fe62f41948b49ea8a503f2ea31686.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSArmedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actic6a9f2cf067b6e80ce8d5ed2417b6168.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSChooseSavedPicture</a></td><td class="indexvalue">Action 'Choose a saved picture.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actica6221a1bb07831b59a024e1917f1daa.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSPictureDetect</a></td><td class="indexvalue">Action 'Picture OK respective picture failure' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd7a7b53a0a97d5ebe4f1d9110ab0636e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSPictureDetectEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actid9287ef00fa4f2f853b8a4bccdfebe4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSPictureToCommonOut</a></td><td class="indexvalue">Action 'Set one picture to a common output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherf0a6876d8ed432ce5f678560644a5c8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSPictureToCommonOutEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti5831f2e81be28a135d0f475039bcc083.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSPictureToOutput</a></td><td class="indexvalue">Action 'Set a picture to an output' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbe9f870afcb182da2ad3f0dcffe15df0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSPictureToOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actib64f15d276b030e204c3be5f985d1da3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSPreAlarm</a></td><td class="indexvalue">Action 'Prealarm respective bring prealarm to end' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher90cb949db784a86052bbf8542cc0ca1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSPreAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3270a8d1d5f64dc7a6068ea043cc9af3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSRecorderEnd</a></td><td class="indexvalue">Action 'The recorder was stopped' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e25ea1600f48cbb5f4d5fe7bd30f891.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti9e98b45cce62c27d1486823c5419d26d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSRecorderTimerReset</a></td><td class="indexvalue">Action 'Reset of timer of the recorder of a VMD.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1302795221bd5b49c7ee35ca824f2cea.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti16e5ffe4ec6e0f1db6b5347f6d59a332.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetAllArmed</a></td><td class="indexvalue">Action 'All VMD's will be armed or disarmed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6642465450601d54ba03e60c8a96182.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetAllArmedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti551e136e5143d6f08f7e65656df72e56.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetArmed</a></td><td class="indexvalue">Action 'Set the VMD armed or disarmed' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb61abc15405fea9d986642378098d0d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetArmedEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actia6ae2897c4c5ae9a1e9d3839afd9803c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetDateAndTime</a></td><td class="indexvalue">Action 'Set date and time of a CU.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher66998b7dd322d459fbec9fc9ff89c30c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetDateAndTimeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti0d2fbb9206b679c5ca3e8669a8e211f0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetMode</a></td><td class="indexvalue">Action 'Reset timers of all VMD's of a VS-40 interface' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti472fc799d4453547c160ccfd294f8784.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetSensorMode</a></td><td class="indexvalue">Action 'Set mode of the sensor' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3783c258bf63814977eafaa3b5cc41c2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSetSensorOutput</a></td><td class="indexvalue">Action 'Change output settings of the sensor' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher5d9a080c6aea1d24860ab46f53ac4dc3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorOutputEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actibe05d9e043292878b2532e134b66e89a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSSyncSignalDetect</a></td><td class="indexvalue">Action 'Sync signal and picture failure respective Sync signal OK' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher626438b0962c578050110abb609e3c93.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSyncSignalDetectEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actie1f8775296444c9bbe3c93d75e6bf91b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSTestAlarm</a></td><td class="indexvalue">Action 'Test alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher741a441696d3dd0fe2b7d2c8168dfdb2.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTestAlarmEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actide27e705e1ce6c29f0652d6d83604fb0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSTimerReset</a></td><td class="indexvalue">Action 'Resez timer of aVMD.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b9994328bdd4c5fe7c7261e999c6a33.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti04702c15514cdbb302818e8dc716d7e1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSVMDMode</a></td><td class="indexvalue">Action 'Mode is 'Working' or 'Setup'' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actibef0248777606c0ee241c5d825fff4ba.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::VideoSensorActions::GeViAct_VSVMDOutOfOrder</a></td><td class="indexvalue">Action 'VMD Out of order' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd15e7afcf5400fdfebc9bd22e8601072.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDOutOfOrderEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac7be4c7ef001e4387171fd298a967be68.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::SwitchControlActions::GeViAct_VX3SystemReset</a></td><td class="indexvalue">Action 'Reset the VX3-system' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7302b43838fb6bbc3d125963954127cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VX3SystemResetEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___zoom_in.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_ZoomIn</a></td><td class="indexvalue">Action 'Zooming in the room' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher42c1b44486a6caa643e73f93042dbe18.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ZoomInEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___zoom_out.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_ZoomOut</a></td><td class="indexvalue">Action 'Zooming out of the room.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2b562ea256a490ddbf5b426a08ff2f93.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ZoomOutEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_actions_1_1_ge_vi_act___zoom_stop.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::CameraControlActions::GeViAct_ZoomStop</a></td><td class="indexvalue">Action 'Stop zooming of the camera' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7079da6ca288c0c65f4b1e4636d13e19.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ZoomStopEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_action.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViAction</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_action_data.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViActionData</a></td><td class="indexvalue">GeViSoft Action Data </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_database.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViDatabase</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers72cbae0eb25d338386acc677bc916e4d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_AccessDenied</a></td><td class="indexvalue">StateAnswer 'Zugriff verweigert.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___action_entry.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_ActionEntry</a></td><td class="indexvalue">StateAnswer 'Aktions Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___alarm_entry.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_AlarmEntry</a></td><td class="indexvalue">StateAnswer 'Alarm Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___d_b_error.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_DBError</a></td><td class="indexvalue">StateAnswer 'Fehler' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___d_b_ok.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_DBOk</a></td><td class="indexvalue">StateAnswer 'Befehl akzeptiert' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answerse7f75ca79b1a20ac79b1753d85a4a64b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_DBTerminated</a></td><td class="indexvalue">StateAnswer 'Befehl abgebrochen' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers9e67fc42d0f12546ee2fdaa7d70bad69.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_DeletedEntries</a></td><td class="indexvalue">StateAnswer '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___nothing.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_Nothing</a></td><td class="indexvalue">StateAnswer 'Die Antwort wird gesendet wenn keine Eintraege mehr vorhanden sind bzw. es wurde gar keine Antwort fuer die Anfrage gefunden.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_answers_1_1_ge_vi_d_b_a___query_handle.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseAnswers::GeViDBA_QueryHandle</a></td><td class="indexvalue">StateAnswer 'Liefert der erzeugten Handle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_d_b_answer.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViDBAnswer</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___action_kind.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_ActionKind</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___action_list.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_ActionList</a></td><td class="indexvalue">StateQuery 'ActionList' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___gsc_system.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_GscSystem</a></td><td class="indexvalue">StateQuery 'GscSystem' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries54fafd4d42a3638e982816346102d8b5.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_LocalTime_GrtEqu</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries498ca5c3af838052dcac464d1b1b6287.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_LocalTime_LowEqu</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries60157de645a0951a0dd45a840d1eb476.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_MonitorGroupDesc</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries012219f468f126a58edd79f11e263577.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_MonitorGroupID</a></td><td class="indexvalue">StateQuery 'MG, wo Alarm praesentiert wurde' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries005922ca275791ebd57b66cd3e09df8d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_MonitorGroupName</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___msc_system.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_MscSystem</a></td><td class="indexvalue">StateQuery 'MscSystem' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries9e4780482a2904fde870ea25deafadee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_PK_GrtEqu</a></td><td class="indexvalue">StateQuery 'Primary Key groesser gleich' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queriesc285fd85d6b3e20d6f71c98de3a9f6ec.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_PK_LowEqu</a></td><td class="indexvalue">StateQuery 'Primary Key kleiner gleich' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___sender_desc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_SenderDesc</a></td><td class="indexvalue">StateQuery 'Von welchem Klient kam die Aktion' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___sender_i_d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_SenderID</a></td><td class="indexvalue">StateQuery 'Von welchem Klient kam die Aktion' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___sender_name.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_SenderName</a></td><td class="indexvalue">StateQuery 'Von welchem Klient kam die Aktion' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queriesb288d79d3110352fd070f37f954e36e6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_StartMonitorGroupDesc</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries0dd7c71674c007fabf0258a23ae1b97c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_StartMonitorGroupID</a></td><td class="indexvalue">StateQuery 'Die erste MG, wo Alarm praesentiert wurde' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queriese40f70af5168317f6d207785ac1160d4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_StartMonitorGroupName</a></td><td class="indexvalue">StateQuery '' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___text.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_Text</a></td><td class="indexvalue">StateQuery 'Begleittext' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___type_desc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_TypeDesc</a></td><td class="indexvalue">StateQuery 'Beschreibung des Alarms' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___type_i_d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_TypeID</a></td><td class="indexvalue">StateQuery 'AlarmTypeID bzw. ActionCode im Bereich' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___type_name.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_TypeName</a></td><td class="indexvalue">StateQuery 'Alarm- bzw. Aktionsname' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___with_ack.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_WithAck</a></td><td class="indexvalue">StateQuery 'Mit/ohne Bestaetigung' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries662bc179faa4fddd6574662376bcce3c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_WithMscIIRelation</a></td><td class="indexvalue">StateQuery 'Mit/Ohne MscII Events' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_f___with_quit.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBF_WithQuit</a></td><td class="indexvalue">StateQuery 'Mit/ohne Quittierung' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_d_b_filter.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViDBFilter</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___abort_query.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_AbortQuery</a></td><td class="indexvalue">StateQuery 'Befehl abbrechen' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___close_query.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_CloseQuery</a></td><td class="indexvalue">StateQuery 'Schliesst den Handle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries33ba6515b199b40bfb49dd8dafd93552.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_CreateActionQuery</a></td><td class="indexvalue">StateQuery 'Startet eine Abfrage ueber die Aktionstabelle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries2c98b31a9933f2ffdb018031eb164706.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_CreateAlarmQuery</a></td><td class="indexvalue">StateQuery 'Startet eine Abfrage ueber die Alarmtabelle' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries357b02d0cb30dac6f8e6d4ea7a3e8ec3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_CreateDeleteActionsHandle</a></td><td class="indexvalue">StateQuery 'Bereitet ein Objekt fuer das selektive Loeschen von Eintraegen in der Aktionstabelle vor.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queriesd21974249c2dcdd0e240df701072170d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_CreateDeleteAlarmsHandle</a></td><td class="indexvalue">StateQuery 'Bereitet ein Objekt fuer das selektive Loeschen von Eintraegen in der Alarmtabelle vor.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___delete_all.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_DeleteAll</a></td><td class="indexvalue">StateQuery 'Loescht alle passenden Eintraege in der Aktions- bzw. Alarmtabelle. Kann nur in Verbindung mit den entspraechenden CreateDelete...Handle verwendet werden.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___get.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_Get</a></td><td class="indexvalue">StateQuery 'Liefert den Eintrag anhand von PK' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___get_first.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_GetFirst</a></td><td class="indexvalue">StateQuery 'Liefert den ersten Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___get_last.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_GetLast</a></td><td class="indexvalue">StateQuery 'Liefert den letzten Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___get_next.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_GetNext</a></td><td class="indexvalue">StateQuery 'Liefert den naechsten Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_queries_1_1_ge_vi_d_b_q___get_prev.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::DataBaseQueries::GeViDBQ_GetPrev</a></td><td class="indexvalue">StateQuery 'Liefert den vorgehenden Eintrag' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_d_b_query.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViDBQuery</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_g_u_i_d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViGUID</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_message.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViMessage</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___alarm_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_AlarmInfo</a></td><td class="indexvalue">StateAnswer 'Info zum Alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___alarm_on_m_g_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_AlarmOnMGInfo</a></td><td class="indexvalue">StateAnswer 'AlarmOnMG info' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___client_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_ClientInfo</a></td><td class="indexvalue">StateAnswer 'Information zu dem Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___client_login_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_ClientLoginInfo</a></td><td class="indexvalue">StateAnswer 'Information zu dem Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___command_failed.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_CommandFailed</a></td><td class="indexvalue">StateAnswer 'Befehl fehlgeschlagen.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___command_ok.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_CommandOk</a></td><td class="indexvalue">StateAnswer 'Befehl ausgefuehrt.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___contrast_state.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_ContrastState</a></td><td class="indexvalue">StateAnswer 'ContrastState Info' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1ec07d193bafa50cb65270d9824f88750.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_InfoDatabaseCreationTime</a></td><td class="indexvalue">StateAnswer 'Datenbankzeit' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_162e32cd66a8689a457308770e56a01fe.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_InfoServerStartTime</a></td><td class="indexvalue">StateAnswer 'Serverstartzeit' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___input_contact_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_InputContactInfo</a></td><td class="indexvalue">StateAnswer 'Info zu einem Eingangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___license_call.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_LicenseCall</a></td><td class="indexvalue">StateAnswer 'Interne Abfrage' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___license_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_LicenseInfo</a></td><td class="indexvalue">StateAnswer 'Lizenzinformation' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1edb6e40760a4e7d6c5dec0fbcf72969a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_LicenseTransferData</a></td><td class="indexvalue">StateAnswer 'Interne Abfrage' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___license_value.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_LicenseValue</a></td><td class="indexvalue">StateAnswer 'Wert des bestimmten Eintrags' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___monitor_group_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_MonitorGroupInfo</a></td><td class="indexvalue">StateAnswer 'Info zu einer MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___nothing.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_Nothing</a></td><td class="indexvalue">StateAnswer 'Die Antwort wird gesendet wenn keine Eintraege mehr vorhanden sind bzw. es wurde gar keine Antwort fuer die Anfrage gefunden.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_193bb5274f98d1db03adce0e971430794.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_OutputContactInfo</a></td><td class="indexvalue">StateAnswer 'Info zu einem Ausgangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___p_t_z_head_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_PTZHeadInfo</a></td><td class="indexvalue">StateAnswer 'S/N Info' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___sync_state.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_SyncState</a></td><td class="indexvalue">StateAnswer 'SyncState Info' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___terminated.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_Terminated</a></td><td class="indexvalue">StateAnswer 'Die Anfrage oder Befehl wurde terminiert.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___threshold_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_ThresholdInfo</a></td><td class="indexvalue">StateAnswer 'Gerade gemessener Schwellenwert' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___unknown_command.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_UnknownCommand</a></td><td class="indexvalue">StateAnswer 'Befehl nicht verstanden.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_17a74addb8c2f915ea0281e41abf4c46f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_UnsufficientRights</a></td><td class="indexvalue">StateAnswer 'Die Rechte sind nicht ausreichend.' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___video_input_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_VideoInputInfo</a></td><td class="indexvalue">StateAnswer 'Info zu einem VideoEingang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___video_output_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_VideoOutputInfo</a></td><td class="indexvalue">StateAnswer 'Info zu einem Videoausgang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_answers_1_1_ge_vi_s_a___video_sensor_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateAnswers::GeViSA_VideoSensorInfo</a></td><td class="indexvalue">StateAnswer 'VideoSensor Info' </td></tr>
<tr><td class="indexkey"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_soft_connect_progress_callback_wrapper.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViSoftConnectProgressCallbackWrapper</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_soft_connect_progress_event_args.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViSoftConnectProgressEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_soft_databcc77fc62fa6591146e55882982c0bc6b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViSoftDatabaseNotificationCallbackWrapper</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_soft_database_notification_event_args.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViSoftDatabaseNotificationEventArgs</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1d18431388fcc250bccc3fd07bff77eff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetAlarmOnMGByIndex</a></td><td class="indexvalue">StateQuery 'Fragt die Sichtbarkeit des Alarm auf der MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_14968b7f79f2b3e43407c4d59b8f2710d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetAlarmOnMGInfo</a></td><td class="indexvalue">StateQuery 'Fragt die Sichtbarkeit des Alarm auf der MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_alarms.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetAlarms</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_alarms_by_name.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetAlarmsByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_client.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_client_by_name.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetClientByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_contrast_state.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetContrastState</a></td><td class="indexvalue">StateQuery 'Fragt die PictureState Info ab' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_first_alarm.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstAlarm</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_first_client.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1de1cbcc6c5dbb7abe467544ee8c6d9d1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstClientOfType</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Klient dieses Typs' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1d7cb032b5573d76730560959cfabf6bd.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstInputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Eingangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1b1f34b76a3b7b2cdb2146e89321ce9f3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstInputContactOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Eingangskontakt des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1f17a655a6adeb3b8604c4fb105aca461.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstMonitorGroup</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu der ersten MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1bd26ca5c335794d3d99f6577312f11a6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstOutputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Ausgangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_13983e6d75c744622148b3b7d291f9f08.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstOutputContactOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Ausgangskontakt des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_13e8d9babb7e03dc0f84d87a68e625567.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstVideoInput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten VideoEingang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1a4971eaae877eeb32837e722a679cfb9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstVideoInputOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten VideoEingang des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_14016cf51fb74500dd9dffa3745a156b9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstVideoOutput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Videoausgang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_10fce158bfedcf1436dec1196fc613f81.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetFirstVideoOutputOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem ersten Videoausgang des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_124a8a418139a578a6eb93090d615fa76.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetInfoDatabaseCreationTime</a></td><td class="indexvalue">StateQuery 'Liefert die Datenbankzeit zurueck' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1b00e2747cb5b2d2fd5c92b74427bdf77.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetInfoServerStartTime</a></td><td class="indexvalue">StateQuery 'Liefert die Serverstartzeit zurueck' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_input_contact.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetInputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Eingangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1e94bf36f1c10fead2c9bd6374b6e1e1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetInputContactByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Eingangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_license_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetLicenseInfo</a></td><td class="indexvalue">StateQuery 'Liefert die Lizenzinformation zurueck' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_license_value.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetLicenseValue</a></td><td class="indexvalue">StateQuery 'Liefert den Wert eines bestimmten Eintrags zurueck' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_login_info.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetLoginInfo</a></td><td class="indexvalue">StateQuery 'Login Information zu dem Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_monitor_group.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetMonitorGroup</a></td><td class="indexvalue">StateQuery 'Liefert die Information zur bestimmten MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1caa04e2389d277d74c6566cebe35b780.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetMonitorGroupByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zur bestimmten MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_next_alarm.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextAlarm</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Alarm' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_next_client.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Klient' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_135710e38f74c5e406f125ea69502b849.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextClientOfType</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Klient des angegeben Typs' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1e03e055694d6e877aea6306533a0f6f0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextInputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Eingangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1ac2e23a336e58203d7bbc6bf7e9d6ec1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextInputContactOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Eingangskontakt des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1c39b3c9a08ab24b6cb6789cb7b16b93e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextMonitorGroup</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu der naechsten MG' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1e42284bb793aceec0510d91400634f40.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextOutputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Ausgangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1823f42964f474b79ece69bcb6b81bcd9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextOutputContactOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Ausgangskontakt des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_14a875df948156f60bec11d0bcf833c16.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextVideoInput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten VideoEingang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1eff3ad31184a0b1b5e8119607dee0681.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextVideoInputOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem neachsten VideoEingang des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1f720a358ff0d356cae86682a9f0ab28a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextVideoOutput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Videoausgang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_16894f78afac85a8486a210c2a5f8e831.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetNextVideoOutputOfClient</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem naechsten Videoausgang des Clients' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_output_contact.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetOutputContact</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Ausgangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_14972d44778b3ed60053ac799a0214fea.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetOutputContactByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Ausgangskontakt' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_188ea035d1dcbe78e22fb7ea480f57b8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetPTZHeadInfo</a></td><td class="indexvalue">StateQuery 'Fragt die S/N Info ab' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_sync_state.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetSyncState</a></td><td class="indexvalue">StateQuery 'Fragt die SyncState Info ab' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_12e5c21df2cda8c5f83eb730476e6a4e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetThresholdValue</a></td><td class="indexvalue">StateQuery 'Liefert die Information zu dem lokalen Videoeingangs eines VSM' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_video_input.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetVideoInput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten VideoEingang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1e2ad3542f256a884b5c002afa90d62f4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetVideoInputByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten VideoEingang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___get_video_output.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetVideoOutput</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Videoausgang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_136780124987f636b9162ddc2b4d9ae28.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetVideoOutputByName</a></td><td class="indexvalue">StateQuery 'Liefert die Information zum bestimmten Videoausgang' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_13313955290e40b5a5a75574e01bb0bf3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_GetVideoSensorInfo</a></td><td class="indexvalue">StateQuery 'Fragt die Info zum VideoSensor ab' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1_ge_vi_s_q___license_call.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_LicenseCall</a></td><td class="indexvalue">StateQuery 'Interne Abfrage' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_1be90028c522ecc99a9939426f15feaf6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_LicensePrepareCall</a></td><td class="indexvalue">StateQuery 'Interne Abfrage' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_state_queries_1_18bb18126aec4329106c5c762476ba80b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::StateQueries::GeViSQ_LicenseTransferData</a></td><td class="indexvalue">StateQuery 'Interne Abfrage' </td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_state_answer.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViStateAnswer</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_state_query.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViStateQuery</a></td><td class="indexvalue"></td></tr>
<tr><td class="indexkey"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_t_ge_vi_date_time.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::GeViTGeViDateTime</a></td><td class="indexvalue"></td></tr>
</table>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:15:59 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 B

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GeViAct_RedChangeMasterEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html#a370cb9cc56e9d8594acc499da0f3f2b5">aDisconnectIOClients</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html#ae75c46b68eb6c2d1be126168966ab52f">aNewMaster</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html#a68a033c54dbd851d6231cdad66d27698">GeViAct_RedChangeMasterEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html#a5bf9791a948934c263d071c72cebd6a3">GeViAct_RedChangeMasterEventArgs</a>(GeViAct_RedChangeMaster^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher822c952276ffefd471e80ffeb7768662.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_RedChangeMasterEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher013b749d0d1a66314b35f5e1d1f3db49.html">GeViAct_CameraTourNextEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherad583fbc04e029915de181476a3374e2.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher013b749d0d1a66314b35f5e1d1f3db49.html#a9d365948a542eccf05e1dfd59705474d">GeViAct_CameraTourNextEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac077a3bb3cfc5a14404a0604d2e86aaf3.html">GeViAct_CameraTourNext</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Next position in the camera tour'. <a href="#a9d365948a542eccf05e1dfd59705474d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher013b749d0d1a66314b35f5e1d1f3db49.html#a1739dd3c9288aa168d186d2ba33ffb63">aCameraID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera. <a href="#a1739dd3c9288aa168d186d2ba33ffb63"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher013b749d0d1a66314b35f5e1d1f3db49.html#ac9ee5b7d5515cc9cd18a1e5cdc28f290">GeViAct_CameraTourNextEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Next position in the camera tour'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ac9ee5b7d5515cc9cd18a1e5cdc28f290"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs::GeViAct_CameraTourNextEventArgs" ref="ac9ee5b7d5515cc9cd18a1e5cdc28f290" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs::GeViAct_CameraTourNextEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a9d365948a542eccf05e1dfd59705474d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs::GeViAct_CameraTourNextEventArgs" ref="a9d365948a542eccf05e1dfd59705474d" args="(GeViAct_CameraTourNext^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CameraTourNextEventArgs::GeViAct_CameraTourNextEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac077a3bb3cfc5a14404a0604d2e86aaf3.html">GeViAct_CameraTourNext</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Next position in the camera tour'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Next position in the camera tour'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a1739dd3c9288aa168d186d2ba33ffb63"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs::aCameraID" ref="a1739dd3c9288aa168d186d2ba33ffb63" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourNextEventArgs::aCameraID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher014d88aa7f3f6c4be28494dee78768cb.html">GeViAct_IlluminatorSpecFuncXOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher41b1838830cb84322f3223bcae100826.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher014d88aa7f3f6c4be28494dee78768cb.html#a10f382906cd671d899df09833218191c">GeViAct_IlluminatorSpecFuncXOnEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiob501fb174f15395e0878991256ca5635.html">GeViAct_IlluminatorSpecFuncXOn</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn on the special function X'. <a href="#a10f382906cd671d899df09833218191c"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher014d88aa7f3f6c4be28494dee78768cb.html#a5c0cc3223111adbf7f1a300810c9ef76">aIlluminator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the used illuminator. <a href="#a5c0cc3223111adbf7f1a300810c9ef76"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher014d88aa7f3f6c4be28494dee78768cb.html#ae0e8237a55b0f3366d03fe7057fbb2d2">GeViAct_IlluminatorSpecFuncXOnEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn on the special function X'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ae0e8237a55b0f3366d03fe7057fbb2d2"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs::GeViAct_IlluminatorSpecFuncXOnEventArgs" ref="ae0e8237a55b0f3366d03fe7057fbb2d2" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs::GeViAct_IlluminatorSpecFuncXOnEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a10f382906cd671d899df09833218191c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs::GeViAct_IlluminatorSpecFuncXOnEventArgs" ref="a10f382906cd671d899df09833218191c" args="(GeViAct_IlluminatorSpecFuncXOn^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_IlluminatorSpecFuncXOnEventArgs::GeViAct_IlluminatorSpecFuncXOnEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiob501fb174f15395e0878991256ca5635.html">GeViAct_IlluminatorSpecFuncXOn</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn on the special function X'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn on the special function X'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a5c0cc3223111adbf7f1a300810c9ef76"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs::aIlluminator" ref="a5c0cc3223111adbf7f1a300810c9ef76" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncXOnEventArgs::aIlluminator</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the used illuminator. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GeViAct_VSVMDModeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html#a8f148d29fea0335d1fdc8b4eda025f2d">aStatus</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html#ac9bd206f211d562ed947b9a9f2a1383a">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html#ad93cb40735280f490c14fffd5083e1fa">GeViAct_VSVMDModeEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html#ae37e9da929ff9663919524f2c33012ae">GeViAct_VSVMDModeEventArgs</a>(GeViAct_VSVMDMode^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9d393985cf2f3848f5cac8557c568342.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSVMDModeEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher01d60c532f12bd63dacb15af4cd26649.html">GeViAct_DefaultPosClearEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd297b15e843e80074db5f6a6e5e988a8.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher01d60c532f12bd63dacb15af4cd26649.html#a10f94f9d6899f04ef72ad506bd71cc5e">GeViAct_DefaultPosClearEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acb307bac8b6fe82a19d520f40d6437dfd.html">GeViAct_DefaultPosClear</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Clear base position of a camera.'. <a href="#a10f94f9d6899f04ef72ad506bd71cc5e"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher01d60c532f12bd63dacb15af4cd26649.html#ab4d2a5ce39e32394572f496c946d5447">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera, which base position shall be deleted. <a href="#ab4d2a5ce39e32394572f496c946d5447"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher01d60c532f12bd63dacb15af4cd26649.html#a6d708fbdbc9af62d87aafb438d351898">GeViAct_DefaultPosClearEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Clear base position of a camera.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a6d708fbdbc9af62d87aafb438d351898"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs::GeViAct_DefaultPosClearEventArgs" ref="a6d708fbdbc9af62d87aafb438d351898" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs::GeViAct_DefaultPosClearEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a10f94f9d6899f04ef72ad506bd71cc5e"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs::GeViAct_DefaultPosClearEventArgs" ref="a10f94f9d6899f04ef72ad506bd71cc5e" args="(GeViAct_DefaultPosClear^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_DefaultPosClearEventArgs::GeViAct_DefaultPosClearEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acb307bac8b6fe82a19d520f40d6437dfd.html">GeViAct_DefaultPosClear</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Clear base position of a camera.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Clear base position of a camera.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ab4d2a5ce39e32394572f496c946d5447"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs::aVideoInput" ref="ab4d2a5ce39e32394572f496c946d5447" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosClearEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera, which base position shall be deleted. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GeViAct_CameraSelectCharModeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html#abd6b9479e07236b820753166597120d3">aMode</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html#ae8b29603a7824ab26a02a97cc491e30f">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html#aeeeba9ee842c75cb1277c382dd42efa6">GeViAct_CameraSelectCharModeEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html#a1ddf88984c95a8c90aabb03531aadcf5">GeViAct_CameraSelectCharModeEventArgs</a>(GeViAct_CameraSelectCharMode^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercb786d5ea44b851fe410cf283de296f6.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSelectCharModeEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,88 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GeViAct_MoveAlarmByInstanceEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#a77897784a6cfeec27cd32c9c2b8793bc">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#ad979188ce2ff86fce856a77bd6e9622f">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#abd6cb1e0915a5de45a4bc7a14e6b8742">aFrom</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#aa4f4bb49cdbcd9220e1650bf482afdff">aTo</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#a4ca8bce400e7a2fe2af12da291f62ca6">aUserID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#ad1d53b8fdea6aaa53effe9e0cac75be4">GeViAct_MoveAlarmByInstanceEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html#a6315a1b813039ac5e8f6c87eb4d502df">GeViAct_MoveAlarmByInstanceEventArgs</a>(GeViAct_MoveAlarmByInstance^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1bf064e31043a053edfdcaae5a0f10.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveAlarmByInstanceEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GeViAct_DefaultPosSaveEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html#a46e75d86471c4765918db83f6c6480e3">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html#aaedef35a58bd1a51745eaa92e15f3753">GeViAct_DefaultPosSaveEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html#a3ceded49c67c418a95cc5ce46abfba99">GeViAct_DefaultPosSaveEventArgs</a>(GeViAct_DefaultPosSave^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbf9b83a73aa1afe72daa449dbf2d9e48.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosSaveEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GeViAct_AckAlarmByMGEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#a009c0adc3b5e38d40f2ffac4de0a84a9">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#afda3cf126e5c70f646790500a8171783">aClientID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#af11aa98728ffc8e63309ae6c4b8aa829">aMGID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#a4689302c624cc7bd755b2d5a746a61f2">aMGName</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#a7970eab66d8655fca474a1813c9c20c2">GeViAct_AckAlarmByMGEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html#a6b924ad3df641f790c5fffba304e84e3">GeViAct_AckAlarmByMGEventArgs</a>(GeViAct_AckAlarmByMG^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb61afa6aa6e897a0cf934f9c18cd42ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAlarmByMGEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GeViAct_AlternateContactEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html#abbc997650c9ac4cb2221a0e837fc9c71">aBlinkOnTime</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html#a2867a7a230e33e39ef10fa58cf531729">aBlinkPeriod</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html#a4d1e01be5638430944a2f044ec902480">aGlobalContactID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html#a318f17bc0dab6fea67bf71d39b751d55">GeViAct_AlternateContactEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html#a3ce29f4bdb8afbf27637f7f83c6c7b07">GeViAct_AlternateContactEventArgs</a>(GeViAct_AlternateContact^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd89dc942bc63e5a0d151fef76cade821.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlternateContactEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GeViAct_StartAlarmEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#a86aafbdea2cf2e795d8c04b4c05eb78a">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#a4f6c2e105d1761d5eb4d334bc9a6c620">aAlarmType</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#a3f727f7c430d3ce5ecd7892a42b477b7">aAlarmTypeID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#aecba281e2adaa738105d94d70feaf98b">aClientID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#a43974eae95ba9783ceb80d7898a7fc11">GeViAct_StartAlarmEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html#a7a6168bb9e44058da029cb17b19daaae">GeViAct_StartAlarmEventArgs</a>(GeViAct_StartAlarm^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd6cdd2d72835207b2f3a6237ab129e8f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartAlarmEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GeViAct_MIPOfflineEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html#aae400f20932e6ad6b1fa3f1d05296e73">aInterfaceID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html#a6216d123f9aff2e71288ec98fd3870ad">GeViAct_MIPOfflineEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html#a69fb1b071b0885f7263921478b564468">GeViAct_MIPOfflineEventArgs</a>(GeViAct_MIPOffline^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher922217bbf305c753af520f6ec60b54ee.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOfflineEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,88 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GeViAct_CopyAlarmByInstanceEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a0ccda4bcbad46eba9e15143eb0be7e20">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a4017621e5126d045985cd3afc788620e">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a983feb02e0a21d5885073b079b781b1a">aFrom</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a6960b29b0901f8b45ba13bc1970a8cc9">aTo</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a90f7c39ddba1f6cf0c52147a35982451">aUserID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#acd6baffe3809207f538e18f4a35e4046">GeViAct_CopyAlarmByInstanceEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html#a5253bcb4cc8aff654fac0d8138820e08">GeViAct_CopyAlarmByInstanceEventArgs</a>(GeViAct_CopyAlarmByInstance^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2da40834f76bf037a45a60c7df55963e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyAlarmByInstanceEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher072cc8822f79d6d225234a9704296d36.html">GeViAct_IlluminatorSpecFuncUOffEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher44968aa0b8528a6f80980e8cf42c50a6.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher072cc8822f79d6d225234a9704296d36.html#aed5edaa3dc079c119a03d41daf939665">GeViAct_IlluminatorSpecFuncUOffEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio41941065900cc32f11556232a395f600.html">GeViAct_IlluminatorSpecFuncUOff</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn off the special function U'. <a href="#aed5edaa3dc079c119a03d41daf939665"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher072cc8822f79d6d225234a9704296d36.html#aba21a53e8ff45376345872fc0cb73bba">aIlluminator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the used illuminator. <a href="#aba21a53e8ff45376345872fc0cb73bba"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher072cc8822f79d6d225234a9704296d36.html#a7f1fe62f6b78f6287faee2f8c0a7c082">GeViAct_IlluminatorSpecFuncUOffEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn off the special function U'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a7f1fe62f6b78f6287faee2f8c0a7c082"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs::GeViAct_IlluminatorSpecFuncUOffEventArgs" ref="a7f1fe62f6b78f6287faee2f8c0a7c082" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs::GeViAct_IlluminatorSpecFuncUOffEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aed5edaa3dc079c119a03d41daf939665"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs::GeViAct_IlluminatorSpecFuncUOffEventArgs" ref="aed5edaa3dc079c119a03d41daf939665" args="(GeViAct_IlluminatorSpecFuncUOff^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_IlluminatorSpecFuncUOffEventArgs::GeViAct_IlluminatorSpecFuncUOffEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio41941065900cc32f11556232a395f600.html">GeViAct_IlluminatorSpecFuncUOff</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn off the special function U'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn off the special function U'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="aba21a53e8ff45376345872fc0cb73bba"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs::aIlluminator" ref="aba21a53e8ff45376345872fc0cb73bba" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorSpecFuncUOffEventArgs::aIlluminator</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the used illuminator. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html">GeViAct_MIPCableBFaultStateEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3d8958fe6130377fa49ff4dbb5ff3744.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html#ad54b2180602faae358fc9be0d70a6e77">GeViAct_MIPCableBFaultStateEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_13948144b78811cf17e77de96c35ce8b3.html">GeViAct_MIPCableBFaultState</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MIP cable B failure state'. <a href="#ad54b2180602faae358fc9be0d70a6e77"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html#a5e306762fb730142377167398a55b586">aInterfaceID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the corresponding GeMIP. <a href="#a5e306762fb730142377167398a55b586"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html#a6979d9a1e2f8054a46c93148cfc4ced0">aUnit</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unit no. <a href="#a6979d9a1e2f8054a46c93148cfc4ced0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html#ab2b4311313602fad1b860465af1ed7ae">aState</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current failure state: 0 - normal, 1 - failure. <a href="#ab2b4311313602fad1b860465af1ed7ae"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0763597e4e5586a7c1683c82c3771d64.html#ad4ed3cbd3c7f6ac69b0d98a4efeb4e48">GeViAct_MIPCableBFaultStateEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MIP cable B failure state'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ad4ed3cbd3c7f6ac69b0d98a4efeb4e48"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::GeViAct_MIPCableBFaultStateEventArgs" ref="ad4ed3cbd3c7f6ac69b0d98a4efeb4e48" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::GeViAct_MIPCableBFaultStateEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ad54b2180602faae358fc9be0d70a6e77"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::GeViAct_MIPCableBFaultStateEventArgs" ref="ad54b2180602faae358fc9be0d70a6e77" args="(GeViAct_MIPCableBFaultState^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MIPCableBFaultStateEventArgs::GeViAct_MIPCableBFaultStateEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_13948144b78811cf17e77de96c35ce8b3.html">GeViAct_MIPCableBFaultState</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MIP cable B failure state'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MIP cable B failure state'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a5e306762fb730142377167398a55b586"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aInterfaceID" ref="a5e306762fb730142377167398a55b586" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aInterfaceID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the corresponding GeMIP. </p>
</div>
</div>
<a class="anchor" id="ab2b4311313602fad1b860465af1ed7ae"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aState" ref="ab2b4311313602fad1b860465af1ed7ae" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aState</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Current failure state: 0 - normal, 1 - failure. </p>
</div>
</div>
<a class="anchor" id="a6979d9a1e2f8054a46c93148cfc4ced0"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aUnit" ref="a6979d9a1e2f8054a46c93148cfc4ced0" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPCableBFaultStateEventArgs::aUnit</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unit no. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GeViAct_CameraTourPrevEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html#a82e3a2640314c29f9ada07a4527fec83">aCameraID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html#ae0829b3f79e5f6537abaa1aef7f5f4e1">GeViAct_CameraTourPrevEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html#a89fc49c81c2b2b5da19d0deed777c379">GeViAct_CameraTourPrevEventArgs</a>(GeViAct_CameraTourPrev^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbad4665cb57674020854d56073235485.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourPrevEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GeViAct_IrisOpenEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html#a81c3d70fbb9013a3be26dd965b01dba6">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html#a16c6d6f6afc6ac953e734e4c4254bd9d">GeViAct_IrisOpenEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html#ac19f84da3ec417034dcc978b9ff2092f">GeViAct_IrisOpenEventArgs</a>(GeViAct_IrisOpen^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2bdffae856505c2f3cf52c93d73daa1a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IrisOpenEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GeViAct_MBegLockCameraEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad995a6f072a671b02a96cdaa3f4a1e.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a3479c033603a0f4c91a5a779c81062ba">GeViAct_MBegLockCameraEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd73c9f90f97f9c3494a8d06657ffd47a.html">GeViAct_MBegLockCamera</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Request the exclusive PTZ control'. <a href="#a3479c033603a0f4c91a5a779c81062ba"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a95551e8135020f9e0dcaae3048de8db2">aClient</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of GeViTel. <a href="#a95551e8135020f9e0dcaae3048de8db2"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a93d074caca36b888a9fec02ba2c865b8">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input to switch. <a href="#a93d074caca36b888a9fec02ba2c865b8"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a9b7894824924aa4af7e14b52650bfca3">GeViAct_MBegLockCameraEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Request the exclusive PTZ control'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a9b7894824924aa4af7e14b52650bfca3"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::GeViAct_MBegLockCameraEventArgs" ref="a9b7894824924aa4af7e14b52650bfca3" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::GeViAct_MBegLockCameraEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a3479c033603a0f4c91a5a779c81062ba"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::GeViAct_MBegLockCameraEventArgs" ref="a3479c033603a0f4c91a5a779c81062ba" args="(GeViAct_MBegLockCamera^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MBegLockCameraEventArgs::GeViAct_MBegLockCameraEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd73c9f90f97f9c3494a8d06657ffd47a.html">GeViAct_MBegLockCamera</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Request the exclusive PTZ control'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Request the exclusive PTZ control'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a95551e8135020f9e0dcaae3048de8db2"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::aClient" ref="a95551e8135020f9e0dcaae3048de8db2" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::aClient</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of GeViTel. </p>
</div>
</div>
<a class="anchor" id="a93d074caca36b888a9fec02ba2c865b8"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::aVideoInput" ref="a93d074caca36b888a9fec02ba2c865b8" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input to switch. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,88 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GeViAct_MoveActualAlarmEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#a5701c915e59c37647c7f7f20efed8554">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#a05818e103ea1e1ecf3349cc8e2301748">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#a7ff8e1e46ae49f006bd1dffcc11679ae">aFrom</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#aa3a962604d0d4c0ee94963e767ae9740">aTo</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#ac7ec39860a8c409a8eeeb26b916d7cd0">aUserID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#a48253308ed877f6f63c1eb0d91ddb88a">GeViAct_MoveActualAlarmEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html#aa4611ffd136d9f31cdb4210df86eb53c">GeViAct_MoveActualAlarmEventArgs</a>(GeViAct_MoveActualAlarm^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb01ec7379c2d5e7ef32452c9c3a3915d.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MoveActualAlarmEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html">GeViAct_VSSetModeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher869a470ae6843c1adc91903c2f90af0d.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html#a1cea38ec26af8b1ad47c97fbbbe27bfc">GeViAct_VSSetModeEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti0d2fbb9206b679c5ca3e8669a8e211f0.html">GeViAct_VSSetMode</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Reset timers of all VMD's of a VS-40 interface'. <a href="#a1cea38ec26af8b1ad47c97fbbbe27bfc"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html#a57906a53c838d446dbf2a15dd37c20ce">aClientID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of VS-40 interface, only used in the case of an empty Clientname. <a href="#a57906a53c838d446dbf2a15dd37c20ce"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html#aea3c146ae3cf61ed38b12bf07140620b">aClientName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of VS-40 interface. <a href="#aea3c146ae3cf61ed38b12bf07140620b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html#a43b382e80b7ff7e25fb85435eaaca481">aMode</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Can be 1, 2, 3, or 4. <a href="#a43b382e80b7ff7e25fb85435eaaca481"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher093953fae58633919340bbc6edddb0f5.html#ae07995e1ea89a9eded6baf01050938ce">GeViAct_VSSetModeEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Reset timers of all VMD's of a VS-40 interface'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ae07995e1ea89a9eded6baf01050938ce"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::GeViAct_VSSetModeEventArgs" ref="ae07995e1ea89a9eded6baf01050938ce" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::GeViAct_VSSetModeEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a1cea38ec26af8b1ad47c97fbbbe27bfc"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::GeViAct_VSSetModeEventArgs" ref="a1cea38ec26af8b1ad47c97fbbbe27bfc" args="(GeViAct_VSSetMode^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSSetModeEventArgs::GeViAct_VSSetModeEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti0d2fbb9206b679c5ca3e8669a8e211f0.html">GeViAct_VSSetMode</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Reset timers of all VMD's of a VS-40 interface'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Reset timers of all VMD's of a VS-40 interface'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a57906a53c838d446dbf2a15dd37c20ce"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aClientID" ref="a57906a53c838d446dbf2a15dd37c20ce" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aClientID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of VS-40 interface, only used in the case of an empty Clientname. </p>
</div>
</div>
<a class="anchor" id="aea3c146ae3cf61ed38b12bf07140620b"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aClientName" ref="aea3c146ae3cf61ed38b12bf07140620b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aClientName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of VS-40 interface. </p>
</div>
</div>
<a class="anchor" id="a43b382e80b7ff7e25fb85435eaaca481"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aMode" ref="a43b382e80b7ff7e25fb85435eaaca481" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetModeEventArgs::aMode</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Can be 1, 2, 3, or 4. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GeViAct_CameraOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html#a2e045d0ccc72f2e95d2b18d5f5c38722">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html#a0f2069c5cb700ea8261366254bee68f0">GeViAct_CameraOnEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html#a343b96753fc1dd4243c2611cfd4efbcb">GeViAct_CameraOnEventArgs</a>(GeViAct_CameraOn^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7a2166ff745098e6b4b170e50022ef6c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraOnEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GeViAct_CameraTourResumeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ad8b3604c8ae159c2f395f3a21eaf7221">aCameraID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ad9048b22aeab9fa2db6d9862c81e4a54">GeViAct_CameraTourResumeEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ac0548ad4c4e7a83172982d5c095b064c">GeViAct_CameraTourResumeEventArgs</a>(GeViAct_CameraTourResume^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,89 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GeViAct_AlarmStartedEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#a8ef4a3f1ff8884ae0550d91e8db60575">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#ac220c03a91f5e04f6199a911582b5b0f">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#abaa418c2030d5a87804f0b8f719e6daf">aAlarmType</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#a4749de55a57d2a9b6d2f3cfd23223cd3">aAlarmTypeID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#ad436a111919f6bde279d03533a151eed">aClientID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#afd91b74c3799d6c58efa55c4548d09d6">aMGID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#a47c133c690a6beb6291ee5e9a2a3b8d6">GeViAct_AlarmStartedEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html#aa21d5e96e3296f3c9cdc9ef186e73246">GeViAct_AlarmStartedEventArgs</a>(GeViAct_AlarmStarted^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6382c7e0deb438778315cf2803c65378.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmStartedEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html">GeViAct_LogMessageEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherfea20e824a26955a7bcd58ca9021cdc2.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#a4ce0e2029f561f8b00ed3020c770c8ac">GeViAct_LogMessageEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_message.html">GeViAct_LogMessage</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Log message'. <a href="#a4ce0e2029f561f8b00ed3020c770c8ac"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#a42fc29a49d8f87031cb96d91b50e9144">aClientID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Automatic adaption, what has trigger the error. <a href="#a42fc29a49d8f87031cb96d91b50e9144"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#ab9d25a0a4c741e3361cb6451e99c0c87">aConsole</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">0 = data base; 1 = SystemEventLog <a href="#ab9d25a0a4c741e3361cb6451e99c0c87"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#a1db7e67f8632bf4fd3aaf107f05a7aad">aLogText</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Message to log. <a href="#a1db7e67f8632bf4fd3aaf107f05a7aad"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViAlarmID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#a376f2fcd6b460ea9810b0b02b4722866">aAlarmID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Instance Id of the alarm; If 0 no reference to the alarm will be made! <a href="#a376f2fcd6b460ea9810b0b02b4722866"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0b58e1aae4fa37d0c4951b49a53716a0.html#a6acd1865046989702de7ca8420d6a698">GeViAct_LogMessageEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Log message'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a6acd1865046989702de7ca8420d6a698"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::GeViAct_LogMessageEventArgs" ref="a6acd1865046989702de7ca8420d6a698" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::GeViAct_LogMessageEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a4ce0e2029f561f8b00ed3020c770c8ac"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::GeViAct_LogMessageEventArgs" ref="a4ce0e2029f561f8b00ed3020c770c8ac" args="(GeViAct_LogMessage^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_LogMessageEventArgs::GeViAct_LogMessageEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_message.html">GeViAct_LogMessage</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Log message'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Log message'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a376f2fcd6b460ea9810b0b02b4722866"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aAlarmID" ref="a376f2fcd6b460ea9810b0b02b4722866" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAlarmID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aAlarmID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Instance Id of the alarm; If 0 no reference to the alarm will be made! </p>
</div>
</div>
<a class="anchor" id="a42fc29a49d8f87031cb96d91b50e9144"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aClientID" ref="a42fc29a49d8f87031cb96d91b50e9144" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aClientID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Automatic adaption, what has trigger the error. </p>
</div>
</div>
<a class="anchor" id="ab9d25a0a4c741e3361cb6451e99c0c87"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aConsole" ref="ab9d25a0a4c741e3361cb6451e99c0c87" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aConsole</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>0 = data base; 1 = SystemEventLog </p>
</div>
</div>
<a class="anchor" id="a1db7e67f8632bf4fd3aaf107f05a7aad"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aLogText" ref="a1db7e67f8632bf4fd3aaf107f05a7aad" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogMessageEventArgs::aLogText</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Message to log. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GeViAct_UserLoginEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#af10fadc62a78cd3d86965fa07ff60951">aHost</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a3854c338e8a63c8e2ded15520df58fbc">aPort</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a7012a29e75eec06adb5ce6c3e3fb0c69">aUser1</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a7e474761edb785b2d75e78bfad7dad61">aUser2</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a0918b48ac3ef5b3e92911db764ae5536">GeViAct_UserLoginEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a49c0716dfb3c439dfec1fa65f513780a">GeViAct_UserLoginEventArgs</a>(GeViAct_UserLogin^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html">GeViAct_MscServerDisconnectedEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd8b39e1d8db952746042f0f87ff885b5.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html#a7cba94bd80e8ab11343bd9d3cec6e7f6">GeViAct_MscServerDisconnectedEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1f0326b1526d9a951eccb115aa7440d87.html">GeViAct_MscServerDisconnected</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MULTISCOPE disconnected'. <a href="#a7cba94bd80e8ab11343bd9d3cec6e7f6"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html#a6b67e4015fe5a381e5afadf77c189535">aMscServerID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">GeVi-internal ID of the MULTISCOPE server. <a href="#a6b67e4015fe5a381e5afadf77c189535"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_g_u_i_d.html">GeViGUID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html#a57a0ea689d37bdd14a28a585cfc3d9b7">aMscDBGUID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">GUID of the MULTISCOPE data base. <a href="#a57a0ea689d37bdd14a28a585cfc3d9b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html#af97874032e15290a76e0c2f3fd9aab60">aMscServerName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name (host name) of the MULTISCOPE server. <a href="#af97874032e15290a76e0c2f3fd9aab60"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d2bba47e444fb323781f4e5275cc186.html#a509f9588d0a8e4b2bdc1257c3c207036">GeViAct_MscServerDisconnectedEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MULTISCOPE disconnected'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a509f9588d0a8e4b2bdc1257c3c207036"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::GeViAct_MscServerDisconnectedEventArgs" ref="a509f9588d0a8e4b2bdc1257c3c207036" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::GeViAct_MscServerDisconnectedEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a7cba94bd80e8ab11343bd9d3cec6e7f6"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::GeViAct_MscServerDisconnectedEventArgs" ref="a7cba94bd80e8ab11343bd9d3cec6e7f6" args="(GeViAct_MscServerDisconnected^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MscServerDisconnectedEventArgs::GeViAct_MscServerDisconnectedEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1f0326b1526d9a951eccb115aa7440d87.html">GeViAct_MscServerDisconnected</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MULTISCOPE disconnected'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MULTISCOPE disconnected'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a57a0ea689d37bdd14a28a585cfc3d9b7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscDBGUID" ref="a57a0ea689d37bdd14a28a585cfc3d9b7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="struct_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_ge_vi_g_u_i_d.html">GeViGUID</a> GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscDBGUID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>GUID of the MULTISCOPE data base. </p>
</div>
</div>
<a class="anchor" id="a6b67e4015fe5a381e5afadf77c189535"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscServerID" ref="a6b67e4015fe5a381e5afadf77c189535" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscServerID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>GeVi-internal ID of the MULTISCOPE server. </p>
</div>
</div>
<a class="anchor" id="af97874032e15290a76e0c2f3fd9aab60"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscServerName" ref="af97874032e15290a76e0c2f3fd9aab60" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MscServerDisconnectedEventArgs::aMscServerName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name (host name) of the MULTISCOPE server. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d55bc9f27bb7c0dcdd654b2e5dc6199.html">GeViAct_LogLastActionEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher4a7d4606b792675fcc342bf6ce1627a5.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d55bc9f27bb7c0dcdd654b2e5dc6199.html#a87d363535a666a13800e82af2ff282b7">GeViAct_LogLastActionEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_last_action.html">GeViAct_LogLastAction</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'The input action of the current action mapping will be logged.'. <a href="#a87d363535a666a13800e82af2ff282b7"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d55bc9f27bb7c0dcdd654b2e5dc6199.html#a43f2cd69a267d50e9bafcaca428e819d">aConsole</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">0 = data base; 1 = SystemEventLog <a href="#a43f2cd69a267d50e9bafcaca428e819d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0d55bc9f27bb7c0dcdd654b2e5dc6199.html#ac653857e87effd9853be01d80cce538d">GeViAct_LogLastActionEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'The input action of the current action mapping will be logged.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ac653857e87effd9853be01d80cce538d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs::GeViAct_LogLastActionEventArgs" ref="ac653857e87effd9853be01d80cce538d" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs::GeViAct_LogLastActionEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a87d363535a666a13800e82af2ff282b7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs::GeViAct_LogLastActionEventArgs" ref="a87d363535a666a13800e82af2ff282b7" args="(GeViAct_LogLastAction^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_LogLastActionEventArgs::GeViAct_LogLastActionEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___log_last_action.html">GeViAct_LogLastAction</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'The input action of the current action mapping will be logged.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'The input action of the current action mapping will be logged.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a43f2cd69a267d50e9bafcaca428e819d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs::aConsole" ref="a43f2cd69a267d50e9bafcaca428e819d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_LogLastActionEventArgs::aConsole</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>0 = data base; 1 = SystemEventLog </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0dbe5aef303aa8861be2e7f0c51555ee.html">GeViAct_CameraPumpOffEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd219c83be62435d071a4617322570c0b.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0dbe5aef303aa8861be2e7f0c51555ee.html#aa5d852e6d4f9beba450282ccbb44976d">GeViAct_CameraPumpOffEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2bbfc220f82060fd64477f1d314b9252.html">GeViAct_CameraPumpOff</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn of pump of a camera'. <a href="#aa5d852e6d4f9beba450282ccbb44976d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0dbe5aef303aa8861be2e7f0c51555ee.html#a705f200fd20be4e50bfe70b6c7b69fb4">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera, which pump shall be turned off. <a href="#a705f200fd20be4e50bfe70b6c7b69fb4"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0dbe5aef303aa8861be2e7f0c51555ee.html#aff39baa254308718e07775b0c3a59071">GeViAct_CameraPumpOffEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn of pump of a camera'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="aff39baa254308718e07775b0c3a59071"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs::GeViAct_CameraPumpOffEventArgs" ref="aff39baa254308718e07775b0c3a59071" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs::GeViAct_CameraPumpOffEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aa5d852e6d4f9beba450282ccbb44976d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs::GeViAct_CameraPumpOffEventArgs" ref="aa5d852e6d4f9beba450282ccbb44976d" args="(GeViAct_CameraPumpOff^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CameraPumpOffEventArgs::GeViAct_CameraPumpOffEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2bbfc220f82060fd64477f1d314b9252.html">GeViAct_CameraPumpOff</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn of pump of a camera'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn of pump of a camera'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a705f200fd20be4e50bfe70b6c7b69fb4"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs::aVideoInput" ref="a705f200fd20be4e50bfe70b6c7b69fb4" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraPumpOffEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera, which pump shall be turned off. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html">GeViAct_MIPDisplaySegmentStatusEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9709e2fe0c37d008a754ed4b66d88f6b.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html#a81145994c3e8df9751aba1d40a5c70e9">GeViAct_MIPDisplaySegmentStatusEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1dd5da2c2d882c06bd05365e4a43cdf26.html">GeViAct_MIPDisplaySegmentStatus</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MIP display segment status'. <a href="#a81145994c3e8df9751aba1d40a5c70e9"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html#a5096a30929ef8b0e756a1857e75f5826">aInterfaceID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the corresponding GeMIP. <a href="#a5096a30929ef8b0e756a1857e75f5826"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html#a452128fa9155523b2730ef4d131e4795">aUnit</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unit no. <a href="#a452128fa9155523b2730ef4d131e4795"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html#af1086a6ade295b3c914605698bd412b6">aStatus</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current unit status: 0 - inactive, 1 - access, 2 - secure, 3 - failure. <a href="#af1086a6ade295b3c914605698bd412b6"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e1940a19dbff3d64377d1021cfcd6b0.html#af56369ade2896e2e9664d928383bff35">GeViAct_MIPDisplaySegmentStatusEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MIP display segment status'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="af56369ade2896e2e9664d928383bff35"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::GeViAct_MIPDisplaySegmentStatusEventArgs" ref="af56369ade2896e2e9664d928383bff35" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::GeViAct_MIPDisplaySegmentStatusEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a81145994c3e8df9751aba1d40a5c70e9"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::GeViAct_MIPDisplaySegmentStatusEventArgs" ref="a81145994c3e8df9751aba1d40a5c70e9" args="(GeViAct_MIPDisplaySegmentStatus^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MIPDisplaySegmentStatusEventArgs::GeViAct_MIPDisplaySegmentStatusEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1dd5da2c2d882c06bd05365e4a43cdf26.html">GeViAct_MIPDisplaySegmentStatus</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MIP display segment status'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MIP display segment status'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a5096a30929ef8b0e756a1857e75f5826"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aInterfaceID" ref="a5096a30929ef8b0e756a1857e75f5826" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aInterfaceID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the corresponding GeMIP. </p>
</div>
</div>
<a class="anchor" id="af1086a6ade295b3c914605698bd412b6"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aStatus" ref="af1086a6ade295b3c914605698bd412b6" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aStatus</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Current unit status: 0 - inactive, 1 - access, 2 - secure, 3 - failure. </p>
</div>
</div>
<a class="anchor" id="a452128fa9155523b2730ef4d131e4795"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aUnit" ref="a452128fa9155523b2730ef4d131e4795" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPDisplaySegmentStatusEventArgs::aUnit</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unit no. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e25ea1600f48cbb5f4d5fe7bd30f891.html">GeViAct_VSRecorderEndEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher404c442d1b05235d55fe874ac8bb4c43.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e25ea1600f48cbb5f4d5fe7bd30f891.html#a26d1c8c41276007fc03c7505ca535674">GeViAct_VSRecorderEndEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3270a8d1d5f64dc7a6068ea043cc9af3.html">GeViAct_VSRecorderEnd</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'The recorder was stopped'. <a href="#a26d1c8c41276007fc03c7505ca535674"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e25ea1600f48cbb5f4d5fe7bd30f891.html#a2df75ef98d5cf94a0a9e45ed8ad82f86">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input (VMD/Input) <a href="#a2df75ef98d5cf94a0a9e45ed8ad82f86"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0e25ea1600f48cbb5f4d5fe7bd30f891.html#a5dff2a6381cf703490b2adbae3b66bc6">GeViAct_VSRecorderEndEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'The recorder was stopped'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a5dff2a6381cf703490b2adbae3b66bc6"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs::GeViAct_VSRecorderEndEventArgs" ref="a5dff2a6381cf703490b2adbae3b66bc6" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs::GeViAct_VSRecorderEndEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a26d1c8c41276007fc03c7505ca535674"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs::GeViAct_VSRecorderEndEventArgs" ref="a26d1c8c41276007fc03c7505ca535674" args="(GeViAct_VSRecorderEnd^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSRecorderEndEventArgs::GeViAct_VSRecorderEndEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3270a8d1d5f64dc7a6068ea043cc9af3.html">GeViAct_VSRecorderEnd</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'The recorder was stopped'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'The recorder was stopped'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a2df75ef98d5cf94a0a9e45ed8ad82f86"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs::aVideoInput" ref="a2df75ef98d5cf94a0a9e45ed8ad82f86" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderEndEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input (VMD/Input) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,83 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html">GeViAct_SystemStartedEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStartedEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStartedEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html#a95562f1f796836c92d773a4debc19d47">GeViAct_SystemStartedEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStartedEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html#adf3685c43ee269f40085d6fd8120a89f">GeViAct_SystemStartedEventArgs</a>(GeViAct_SystemStarted^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f1016ed21bd03a8f13832ef07301ad9.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_SystemStartedEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ef49017c35308752582ed67005b0c56.html">GeViAct_CameraManualIrisOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb311a90376dd4ff1a4bb321c39447022.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ef49017c35308752582ed67005b0c56.html#ac0ba7932c83171867b417da48051459b">GeViAct_CameraManualIrisOnEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac907d2e7cfd4d8e7de0d46af4ca95a4d1.html">GeViAct_CameraManualIrisOn</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn on the manual iris of the camera'. <a href="#ac0ba7932c83171867b417da48051459b"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ef49017c35308752582ed67005b0c56.html#ae4f94f478b0a77dadcf7707523579ffe">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera. <a href="#ae4f94f478b0a77dadcf7707523579ffe"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ef49017c35308752582ed67005b0c56.html#a2d19685ff6f87d4ec0fd8a523aee2df3">GeViAct_CameraManualIrisOnEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn on the manual iris of the camera'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a2d19685ff6f87d4ec0fd8a523aee2df3"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs::GeViAct_CameraManualIrisOnEventArgs" ref="a2d19685ff6f87d4ec0fd8a523aee2df3" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs::GeViAct_CameraManualIrisOnEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac0ba7932c83171867b417da48051459b"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs::GeViAct_CameraManualIrisOnEventArgs" ref="ac0ba7932c83171867b417da48051459b" args="(GeViAct_CameraManualIrisOn^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CameraManualIrisOnEventArgs::GeViAct_CameraManualIrisOnEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac907d2e7cfd4d8e7de0d46af4ca95a4d1.html">GeViAct_CameraManualIrisOn</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn on the manual iris of the camera'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn on the manual iris of the camera'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ae4f94f478b0a77dadcf7707523579ffe"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs::aVideoInput" ref="ae4f94f478b0a77dadcf7707523579ffe" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraManualIrisOnEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GeViAct_MIPRMTamperStatusEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html#adb3e9edc6857644b3f3e147df58e5da7">aInterfaceID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html#ab132b2e1d6b77763926e01df7be9bd4a">aStatus</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html#ade1602f909daa40b4f3236250a057dcd">aUnit</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html#a474a566565d291ea6d93743a79d0d3f6">GeViAct_MIPRMTamperStatusEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html#a929a9e2456ce2e29ce58267c247a780a">GeViAct_MIPRMTamperStatusEventArgs</a>(GeViAct_MIPRMTamperStatus^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3776f4a0ad295648586ee4b25bfb1ded.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperStatusEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GeViAct_PopUpNextAlarmEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html#ab8f9ebc053a65f3ee1c6b6f98e0d8046">aMonitorGroup</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html#af44ea629b8052241860dabe650897c54">aUserID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html#a1a2a8056403efd37ca2cb5244af46be6">GeViAct_PopUpNextAlarmEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html#a493c5f301f5a6cea9cb91d0240f38a9b">GeViAct_PopUpNextAlarmEventArgs</a>(GeViAct_PopUpNextAlarm^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher69c354eaba63da5396736ba9ec2044b3.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpNextAlarmEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,83 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GeViAct_DataBaseFailureEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html#a8be9692654e4b0d6e50642ee6f39a075">GeViAct_DataBaseFailureEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html#aa1b28dbfdff12c098fb9f510141cec95">GeViAct_DataBaseFailureEventArgs</a>(GeViAct_DataBaseFailure^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GeViAct_QuitAllAlarmsOnMGEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#abb43ed05bbaa325923446065995ab618">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#aa83bb4fa9b794dd17a02f0dfa72229b5">aClientID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#ae4b5490e1da38ce52b5fa56fb0898ddf">aMGID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#a57260cc0132f8f254c0269b000790544">aMGName</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#ad08027841fe53c1921a12b396fc6a74e">GeViAct_QuitAllAlarmsOnMGEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html#a4b8aa48831b5c6ff82b003eed4a808fd">GeViAct_QuitAllAlarmsOnMGEventArgs</a>(GeViAct_QuitAllAlarmsOnMG^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f83525f0e132aba6ae030339a86a5cc.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAllAlarmsOnMGEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html">GeViAct_AlarmCopiedEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3fece75adb8013f354c31e5321b20920.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html#a43562125626afe48827768f1e0f45bec">GeViAct_AlarmCopiedEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act61c98502864540892072929054fa6094.html">GeViAct_AlarmCopied</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'An alarm was copied from one monitor group to an other'. <a href="#a43562125626afe48827768f1e0f45bec"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViAlarmID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html#af0c01886dfd729fe4ce52d72cf25b99c">aAlarmID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Instance ID of the alarm. <a href="#af0c01886dfd729fe4ce52d72cf25b99c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViMGID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html#a9aede074ce7610d0bf151f2c075c509a">aMGFrom</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">From which monitor group (ID) <a href="#a9aede074ce7610d0bf151f2c075c509a"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViMGID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html#a9dbef0da02b3d5a78cbed3b77923cdcc">aMGTo</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">To which monitor group (ID) <a href="#a9dbef0da02b3d5a78cbed3b77923cdcc"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher10d34817014c78acb1ff784c54720a0d.html#a18be151c8bec0cceecb7d609739c5459">GeViAct_AlarmCopiedEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'An alarm was copied from one monitor group to an other'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a18be151c8bec0cceecb7d609739c5459"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::GeViAct_AlarmCopiedEventArgs" ref="a18be151c8bec0cceecb7d609739c5459" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::GeViAct_AlarmCopiedEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a43562125626afe48827768f1e0f45bec"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::GeViAct_AlarmCopiedEventArgs" ref="a43562125626afe48827768f1e0f45bec" args="(GeViAct_AlarmCopied^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_AlarmCopiedEventArgs::GeViAct_AlarmCopiedEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act61c98502864540892072929054fa6094.html">GeViAct_AlarmCopied</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'An alarm was copied from one monitor group to an other'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'An alarm was copied from one monitor group to an other'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="af0c01886dfd729fe4ce52d72cf25b99c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aAlarmID" ref="af0c01886dfd729fe4ce52d72cf25b99c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAlarmID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aAlarmID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Instance ID of the alarm. </p>
</div>
</div>
<a class="anchor" id="a9aede074ce7610d0bf151f2c075c509a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aMGFrom" ref="a9aede074ce7610d0bf151f2c075c509a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViMGID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aMGFrom</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>From which monitor group (ID) </p>
</div>
</div>
<a class="anchor" id="a9dbef0da02b3d5a78cbed3b77923cdcc"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aMGTo" ref="a9dbef0da02b3d5a78cbed3b77923cdcc" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViMGID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmCopiedEventArgs::aMGTo</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>To which monitor group (ID) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GeViAct_StopTimerEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html#a6b7db36b502f22ddcd1a72910ef90a7d">aTimerID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html#afd4a6f29ce8e30094f8af8f326142be7">aTimerName</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html#a7dd17c5e05cba2f9ff1ae43cfbe837b0">GeViAct_StopTimerEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html#aaf9d123cc2e6e95e38a33a8ce1d000c8">GeViAct_StopTimerEventArgs</a>(GeViAct_StopTimer^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8ecd98ac34ca8d58efc18c10ca951257.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StopTimerEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html">GeViAct_CameraTourResumeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0a1bfac114c7dab688de7117ed131cdf.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ac0548ad4c4e7a83172982d5c095b064c">GeViAct_CameraTourResumeEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace9404e312313543832f2f8b23990603d.html">GeViAct_CameraTourResume</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Resume the camera tour'. <a href="#ac0548ad4c4e7a83172982d5c095b064c"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ad8b3604c8ae159c2f395f3a21eaf7221">aCameraID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera. <a href="#ad8b3604c8ae159c2f395f3a21eaf7221"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher114d037e059005de65e97873fca749c4.html#ad9048b22aeab9fa2db6d9862c81e4a54">GeViAct_CameraTourResumeEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Resume the camera tour'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ad9048b22aeab9fa2db6d9862c81e4a54"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs::GeViAct_CameraTourResumeEventArgs" ref="ad9048b22aeab9fa2db6d9862c81e4a54" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs::GeViAct_CameraTourResumeEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac0548ad4c4e7a83172982d5c095b064c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs::GeViAct_CameraTourResumeEventArgs" ref="ac0548ad4c4e7a83172982d5c095b064c" args="(GeViAct_CameraTourResume^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CameraTourResumeEventArgs::GeViAct_CameraTourResumeEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ace9404e312313543832f2f8b23990603d.html">GeViAct_CameraTourResume</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Resume the camera tour'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Resume the camera tour'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ad8b3604c8ae159c2f395f3a21eaf7221"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs::aCameraID" ref="ad8b3604c8ae159c2f395f3a21eaf7221" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraTourResumeEventArgs::aCameraID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher11500dfdc922b941f26da7091f18ebd0.html">GeViAct_VSAlarmExternEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherece8d494552e6d90b96eaa36f989cabc.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher11500dfdc922b941f26da7091f18ebd0.html#a55e21bd6de6d0d441163a0925a269c3d">GeViAct_VSAlarmExternEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti16229e7e4c0c65b4091bab198ef51ed1.html">GeViAct_VSAlarmExtern</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'External alarm'. <a href="#a55e21bd6de6d0d441163a0925a269c3d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher11500dfdc922b941f26da7091f18ebd0.html#a95d9bada7a2c61ff9658afdf91b17c59">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input (VMD/Input) <a href="#a95d9bada7a2c61ff9658afdf91b17c59"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher11500dfdc922b941f26da7091f18ebd0.html#ab9d7acd1a0b59675185c61dc68d42664">GeViAct_VSAlarmExternEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'External alarm'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ab9d7acd1a0b59675185c61dc68d42664"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs::GeViAct_VSAlarmExternEventArgs" ref="ab9d7acd1a0b59675185c61dc68d42664" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs::GeViAct_VSAlarmExternEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a55e21bd6de6d0d441163a0925a269c3d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs::GeViAct_VSAlarmExternEventArgs" ref="a55e21bd6de6d0d441163a0925a269c3d" args="(GeViAct_VSAlarmExtern^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSAlarmExternEventArgs::GeViAct_VSAlarmExternEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti16229e7e4c0c65b4091bab198ef51ed1.html">GeViAct_VSAlarmExtern</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'External alarm'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'External alarm'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a95d9bada7a2c61ff9658afdf91b17c59"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs::aVideoInput" ref="a95d9bada7a2c61ff9658afdf91b17c59" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmExternEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input (VMD/Input) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,138 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html">GeViAct_DataBaseFailureEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0ff32672f5e3cf1f05c2302229c07d34.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html#aa1b28dbfdff12c098fb9f510141cec95">GeViAct_DataBaseFailureEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_actions3b14c99019a54b096f2832e334c6e2f7.html">GeViAct_DataBaseFailure</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Database failure.'. <a href="#aa1b28dbfdff12c098fb9f510141cec95"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher119fcaf0c1300e2a7cd0c737ab0f8a0f.html#a8be9692654e4b0d6e50642ee6f39a075">GeViAct_DataBaseFailureEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Database failure.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a8be9692654e4b0d6e50642ee6f39a075"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs::GeViAct_DataBaseFailureEventArgs" ref="a8be9692654e4b0d6e50642ee6f39a075" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs::GeViAct_DataBaseFailureEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aa1b28dbfdff12c098fb9f510141cec95"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DataBaseFailureEventArgs::GeViAct_DataBaseFailureEventArgs" ref="aa1b28dbfdff12c098fb9f510141cec95" args="(GeViAct_DataBaseFailure^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_DataBaseFailureEventArgs::GeViAct_DataBaseFailureEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_data_base_actions3b14c99019a54b096f2832e334c6e2f7.html">GeViAct_DataBaseFailure</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Database failure.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Database failure.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GeViAct_CameraCycleStartEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html#a021911ae8fab8db7b21ecde42e5155a5">aCycleID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html#a020aa9915ed298aef94c8cef0d829362">aCycleName</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html#a54db0b11a22ed8fd7b4ab118356ecb93">aMonitorID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html#a5f9c3636c72a32e0d6ef82ad26fc8acb">GeViAct_CameraCycleStartEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html#ab54e004d775a5b6c03ff90d770b66baf">GeViAct_CameraCycleStartEventArgs</a>(GeViAct_CameraCycleStart^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8a1facd7958d57dfafc1179147fa11b1.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStartEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html">GeViAct_CameraSetPrePosTextEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcheraf273ea0992323c5ba167b5827a63e1a.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html#a6e01b8bd4ddefee2066c635068677044">GeViAct_CameraSetPrePosTextEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd815c3b67111543eafaf3d26bd5e5e29.html">GeViAct_CameraSetPrePosText</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Set text on a predefinied position'. <a href="#a6e01b8bd4ddefee2066c635068677044"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html#a9feb5d94644f29cd1d7e29db4034ec3f">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the camera, where the text shall be set. <a href="#a9feb5d94644f29cd1d7e29db4034ec3f"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html#a75e82d20ecf861bc09fccded9a3cb0ad">aText</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Text, maximal 16 characters. <a href="#a75e82d20ecf861bc09fccded9a3cb0ad"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher12b6bf103b7ac23edd5687110fe1873c.html#a4d21fd15efc384ff2f71bd893793c6ff">GeViAct_CameraSetPrePosTextEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Set text on a predefinied position'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a4d21fd15efc384ff2f71bd893793c6ff"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::GeViAct_CameraSetPrePosTextEventArgs" ref="a4d21fd15efc384ff2f71bd893793c6ff" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::GeViAct_CameraSetPrePosTextEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a6e01b8bd4ddefee2066c635068677044"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::GeViAct_CameraSetPrePosTextEventArgs" ref="a6e01b8bd4ddefee2066c635068677044" args="(GeViAct_CameraSetPrePosText^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CameraSetPrePosTextEventArgs::GeViAct_CameraSetPrePosTextEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acd815c3b67111543eafaf3d26bd5e5e29.html">GeViAct_CameraSetPrePosText</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Set text on a predefinied position'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Set text on a predefinied position'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a75e82d20ecf861bc09fccded9a3cb0ad"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::aText" ref="a75e82d20ecf861bc09fccded9a3cb0ad" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::aText</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Text, maximal 16 characters. </p>
</div>
</div>
<a class="anchor" id="a9feb5d94644f29cd1d7e29db4034ec3f"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::aVideoInput" ref="a9feb5d94644f29cd1d7e29db4034ec3f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetPrePosTextEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the camera, where the text shall be set. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1302795221bd5b49c7ee35ca824f2cea.html">GeViAct_VSRecorderTimerResetEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc6d617d1ac248e1520f8ea53f2853c7e.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1302795221bd5b49c7ee35ca824f2cea.html#acdb3b2e9f22fb5e1a4eaa8914b3561ae">GeViAct_VSRecorderTimerResetEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti9e98b45cce62c27d1486823c5419d26d.html">GeViAct_VSRecorderTimerReset</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Reset of timer of the recorder of a VMD.'. <a href="#acdb3b2e9f22fb5e1a4eaa8914b3561ae"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1302795221bd5b49c7ee35ca824f2cea.html#ac84e7c19fe5f60f89c67221334bdbace">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input (VMD/1) <a href="#ac84e7c19fe5f60f89c67221334bdbace"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1302795221bd5b49c7ee35ca824f2cea.html#a51def8120f147da4d38d0c40332e2c75">GeViAct_VSRecorderTimerResetEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Reset of timer of the recorder of a VMD.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a51def8120f147da4d38d0c40332e2c75"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs::GeViAct_VSRecorderTimerResetEventArgs" ref="a51def8120f147da4d38d0c40332e2c75" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs::GeViAct_VSRecorderTimerResetEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="acdb3b2e9f22fb5e1a4eaa8914b3561ae"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs::GeViAct_VSRecorderTimerResetEventArgs" ref="acdb3b2e9f22fb5e1a4eaa8914b3561ae" args="(GeViAct_VSRecorderTimerReset^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSRecorderTimerResetEventArgs::GeViAct_VSRecorderTimerResetEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti9e98b45cce62c27d1486823c5419d26d.html">GeViAct_VSRecorderTimerReset</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Reset of timer of the recorder of a VMD.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Reset of timer of the recorder of a VMD.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ac84e7c19fe5f60f89c67221334bdbace"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs::aVideoInput" ref="ac84e7c19fe5f60f89c67221334bdbace" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSRecorderTimerResetEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input (VMD/1) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,278 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html">GeViAct_StartMscEventEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher6ed3ba7ee29743465e28f6717902eb23.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#ac47316eb8a0f2a2292fd687576371c14">GeViAct_StartMscEventEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1_1_ge_vi_act___start_msc_event.html">GeViAct_StartMscEvent</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Start of MULTISCOPE event'. <a href="#ac47316eb8a0f2a2292fd687576371c14"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#ae9d649c1635b744616589b344e36a2c4">aMscServerID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">GeVi-internal ID of MULTISCOPE server; It will only needed, if the server name is empty. <a href="#ae9d649c1635b744616589b344e36a2c4"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#ac51044c83a5606acbf172780a8247965">aMscServerName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name (host name) of the MULTISCOPE server respective empty. <a href="#ac51044c83a5606acbf172780a8247965"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#a2b4304c62de6689a9863681c691d9ea5">aMscEventRef</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">GeVi-internal ID (Reference) of the MULTISCOPE event type; It will only be needed, if the MscEventName is empty. <a href="#a2b4304c62de6689a9863681c691d9ea5"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#ad806698f3fa85773b076878e3766c337">aMscEventName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the MULTISCOPE event type respective empty. <a href="#ad806698f3fa85773b076878e3766c337"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#aed85d2704018c857155c8bbf4a22d9b7">aMscStartKind</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Start kind (currently only 0 = normal) <a href="#aed85d2704018c857155c8bbf4a22d9b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int64&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#ae45b5fe815b116a2efe5cdd6e43ee78c">aMscInt1</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">EventParam1 of MULTISCOPE Event record. <a href="#ae45b5fe815b116a2efe5cdd6e43ee78c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int64&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#a302cf7bba186f737c69f34947a937023">aMscInt2</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">EventParam2 of MULTISCOPE Event record. <a href="#a302cf7bba186f737c69f34947a937023"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#a01169971296562657aabe574d314f24a">aMscBlob</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Information stored in blob field of the MULTISCOPE Event record respective empty. <a href="#a01169971296562657aabe574d314f24a"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher13a40beedfd74de6ee7dc7bab1e53d1d.html#a7661346cfac2514339dac02f5478c585">GeViAct_StartMscEventEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Start of MULTISCOPE event'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a7661346cfac2514339dac02f5478c585"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::GeViAct_StartMscEventEventArgs" ref="a7661346cfac2514339dac02f5478c585" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::GeViAct_StartMscEventEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ac47316eb8a0f2a2292fd687576371c14"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::GeViAct_StartMscEventEventArgs" ref="ac47316eb8a0f2a2292fd687576371c14" args="(GeViAct_StartMscEvent^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_StartMscEventEventArgs::GeViAct_StartMscEventEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_msc_i_i_actions_1_1_ge_vi_act___start_msc_event.html">GeViAct_StartMscEvent</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Start of MULTISCOPE event'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Start of MULTISCOPE event'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a01169971296562657aabe574d314f24a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscBlob" ref="a01169971296562657aabe574d314f24a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscBlob</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Information stored in blob field of the MULTISCOPE Event record respective empty. </p>
</div>
</div>
<a class="anchor" id="ad806698f3fa85773b076878e3766c337"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscEventName" ref="ad806698f3fa85773b076878e3766c337" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscEventName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the MULTISCOPE event type respective empty. </p>
</div>
</div>
<a class="anchor" id="a2b4304c62de6689a9863681c691d9ea5"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscEventRef" ref="a2b4304c62de6689a9863681c691d9ea5" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscEventRef</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>GeVi-internal ID (Reference) of the MULTISCOPE event type; It will only be needed, if the MscEventName is empty. </p>
</div>
</div>
<a class="anchor" id="ae45b5fe815b116a2efe5cdd6e43ee78c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscInt1" ref="ae45b5fe815b116a2efe5cdd6e43ee78c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int64 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscInt1</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>EventParam1 of MULTISCOPE Event record. </p>
</div>
</div>
<a class="anchor" id="a302cf7bba186f737c69f34947a937023"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscInt2" ref="a302cf7bba186f737c69f34947a937023" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int64 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscInt2</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>EventParam2 of MULTISCOPE Event record. </p>
</div>
</div>
<a class="anchor" id="ae9d649c1635b744616589b344e36a2c4"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscServerID" ref="ae9d649c1635b744616589b344e36a2c4" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscServerID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>GeVi-internal ID of MULTISCOPE server; It will only needed, if the server name is empty. </p>
</div>
</div>
<a class="anchor" id="ac51044c83a5606acbf172780a8247965"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscServerName" ref="ac51044c83a5606acbf172780a8247965" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscServerName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name (host name) of the MULTISCOPE server respective empty. </p>
</div>
</div>
<a class="anchor" id="aed85d2704018c857155c8bbf4a22d9b7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscStartKind" ref="aed85d2704018c857155c8bbf4a22d9b7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_StartMscEventEventArgs::aMscStartKind</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Start kind (currently only 0 = normal) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html">GeViAct_VSAllTestAlarmEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher79ac3eae1e5c4fe07855aeea142bc927.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html#a193921a2dab344c2459cce7a6b7c0f85">GeViAct_VSAllTestAlarmEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti82f9ce5a79e61773a43d7da4847cc512.html">GeViAct_VSAllTestAlarm</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Test alarm for all VMD's of one client.'. <a href="#a193921a2dab344c2459cce7a6b7c0f85"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html#a8cfd060ce975f6528d51c7a271a5a41c">aClientID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of VS-40 interface, only used in the case of an empty Clientname. <a href="#a8cfd060ce975f6528d51c7a271a5a41c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html#a9e0ec778e105f9cd2392a2ec24ae5747">aClientName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of VS-40 interface. <a href="#a9e0ec778e105f9cd2392a2ec24ae5747"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher148243c65a7c9580e0833dd8c2da9a67.html#adc299ebc0b1a30f583ea1546258da6e2">GeViAct_VSAllTestAlarmEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Test alarm for all VMD's of one client.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="adc299ebc0b1a30f583ea1546258da6e2"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::GeViAct_VSAllTestAlarmEventArgs" ref="adc299ebc0b1a30f583ea1546258da6e2" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::GeViAct_VSAllTestAlarmEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a193921a2dab344c2459cce7a6b7c0f85"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::GeViAct_VSAllTestAlarmEventArgs" ref="a193921a2dab344c2459cce7a6b7c0f85" args="(GeViAct_VSAllTestAlarm^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSAllTestAlarmEventArgs::GeViAct_VSAllTestAlarmEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti82f9ce5a79e61773a43d7da4847cc512.html">GeViAct_VSAllTestAlarm</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Test alarm for all VMD's of one client.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Test alarm for all VMD's of one client.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a8cfd060ce975f6528d51c7a271a5a41c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::aClientID" ref="a8cfd060ce975f6528d51c7a271a5a41c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::aClientID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of VS-40 interface, only used in the case of an empty Clientname. </p>
</div>
</div>
<a class="anchor" id="a9e0ec778e105f9cd2392a2ec24ae5747"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::aClientName" ref="a9e0ec778e105f9cd2392a2ec24ae5747" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAllTestAlarmEventArgs::aClientName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of VS-40 interface. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html">GeViAct_AckAllAlarmsOnMGEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3aeea244ca98250c89ad5b2525d690e2.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#a4108274f919952b86656c91f6df26ae1">GeViAct_AckAllAlarmsOnMGEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act8258ca0902856941b2a44390fccbaff5.html">GeViAct_AckAllAlarmsOnMG</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Acknowledge of all alarms on a moitor group'. <a href="#a4108274f919952b86656c91f6df26ae1"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#a561b4344ffb57ff4f99f7126c242918b">aClientID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Automatic insert of the acknowledging user. <a href="#a561b4344ffb57ff4f99f7126c242918b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViMGID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#a731ee961e2e5bdbb0120f03641cd8e54">aMGID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the monitor group, on which the alarm is displayed; used only by empty MGName field. <a href="#a731ee961e2e5bdbb0120f03641cd8e54"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#a69de979eea2d0c47dddbc1a9ad51c954">aMGName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the monitor group, on which the alarm is displayed or empty (mean search criterion). <a href="#a69de979eea2d0c47dddbc1a9ad51c954"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#a6e7d9273b719f598070c98f53dfbe1ed">aAlarmText</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Description. <a href="#a6e7d9273b719f598070c98f53dfbe1ed"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher14e35d1a421ee39fc1050b944a609ffe.html#af1368177386f7b93ad0366635d6bcf7f">GeViAct_AckAllAlarmsOnMGEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Acknowledge of all alarms on a moitor group'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="af1368177386f7b93ad0366635d6bcf7f"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::GeViAct_AckAllAlarmsOnMGEventArgs" ref="af1368177386f7b93ad0366635d6bcf7f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::GeViAct_AckAllAlarmsOnMGEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a4108274f919952b86656c91f6df26ae1"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::GeViAct_AckAllAlarmsOnMGEventArgs" ref="a4108274f919952b86656c91f6df26ae1" args="(GeViAct_AckAllAlarmsOnMG^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_AckAllAlarmsOnMGEventArgs::GeViAct_AckAllAlarmsOnMGEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act8258ca0902856941b2a44390fccbaff5.html">GeViAct_AckAllAlarmsOnMG</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Acknowledge of all alarms on a moitor group'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Acknowledge of all alarms on a moitor group'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a6e7d9273b719f598070c98f53dfbe1ed"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aAlarmText" ref="a6e7d9273b719f598070c98f53dfbe1ed" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aAlarmText</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Description. </p>
</div>
</div>
<a class="anchor" id="a561b4344ffb57ff4f99f7126c242918b"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aClientID" ref="a561b4344ffb57ff4f99f7126c242918b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aClientID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Automatic insert of the acknowledging user. </p>
</div>
</div>
<a class="anchor" id="a731ee961e2e5bdbb0120f03641cd8e54"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aMGID" ref="a731ee961e2e5bdbb0120f03641cd8e54" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViMGID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aMGID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the monitor group, on which the alarm is displayed; used only by empty MGName field. </p>
</div>
</div>
<a class="anchor" id="a69de979eea2d0c47dddbc1a9ad51c954"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aMGName" ref="a69de979eea2d0c47dddbc1a9ad51c954" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AckAllAlarmsOnMGEventArgs::aMGName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the monitor group, on which the alarm is displayed or empty (mean search criterion). </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GeViAct_CameraClearPrePosTextEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html#ad2b0d311c868d8422102a90fa79d5161">aPosition</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html#acb47f789a67f03fad989a5aa4cb626ba">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html#a7302e31f484e1b0f80368158659bdbbd">GeViAct_CameraClearPrePosTextEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html#a9fe367c3337ef82a29df0c9b3c7db446">GeViAct_CameraClearPrePosTextEventArgs</a>(GeViAct_CameraClearPrePosText^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb241ac70959c2d4e6d99c0924d84210b.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraClearPrePosTextEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html">GeViAct_ChangeRightProfileEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher7e61e1f88d30bcd2ae099a6ce17b5f91.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#a378151ede695af5b752fa23ac9c8c3a7">GeViAct_ChangeRightProfileEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_d4683477e2c0dde8a538c2824c1927e3.html">GeViAct_ChangeRightProfile</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Change right profile of a user'. <a href="#a378151ede695af5b752fa23ac9c8c3a7"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#abadf58d78880b423301ca4a69c5abc75">aUserID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the user, only if name is empty. <a href="#abadf58d78880b423301ca4a69c5abc75"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#ace01e76c0b28dff1d891a9d1b6394f59">aUserName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the user or empty. <a href="#ace01e76c0b28dff1d891a9d1b6394f59"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#ace2694c65278dc7a142d5b2ae9c86de7">aProfileID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the profile, if there is no name for it. <a href="#ace2694c65278dc7a142d5b2ae9c86de7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#ab92a8fdbb17999c561908073ef0a55c2">aProfileName</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the profile or empty. <a href="#ab92a8fdbb17999c561908073ef0a55c2"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher15c9ad40aaf9446fb5c31572cff9861b.html#aee72fc3357ace285da73fd1b6b5b1abf">GeViAct_ChangeRightProfileEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Change right profile of a user'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="aee72fc3357ace285da73fd1b6b5b1abf"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::GeViAct_ChangeRightProfileEventArgs" ref="aee72fc3357ace285da73fd1b6b5b1abf" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::GeViAct_ChangeRightProfileEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a378151ede695af5b752fa23ac9c8c3a7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::GeViAct_ChangeRightProfileEventArgs" ref="a378151ede695af5b752fa23ac9c8c3a7" args="(GeViAct_ChangeRightProfile^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_ChangeRightProfileEventArgs::GeViAct_ChangeRightProfileEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_d4683477e2c0dde8a538c2824c1927e3.html">GeViAct_ChangeRightProfile</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Change right profile of a user'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Change right profile of a user'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ace2694c65278dc7a142d5b2ae9c86de7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aProfileID" ref="ace2694c65278dc7a142d5b2ae9c86de7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aProfileID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the profile, if there is no name for it. </p>
</div>
</div>
<a class="anchor" id="ab92a8fdbb17999c561908073ef0a55c2"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aProfileName" ref="ab92a8fdbb17999c561908073ef0a55c2" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aProfileName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the profile or empty. </p>
</div>
</div>
<a class="anchor" id="abadf58d78880b423301ca4a69c5abc75"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aUserID" ref="abadf58d78880b423301ca4a69c5abc75" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aUserID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the user, only if name is empty. </p>
</div>
</div>
<a class="anchor" id="ace01e76c0b28dff1d891a9d1b6394f59"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aUserName" ref="ace01e76c0b28dff1d891a9d1b6394f59" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ChangeRightProfileEventArgs::aUserName</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the user or empty. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GeViAct_CrossSwitchEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html#abff179f4297a0d8cfd4cea896b1803cb">aSwitchMode</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html#a5aae405b7120453d29439b573d36ad9e">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html#a6dd3d66169ae643143dd4c15196b1900">aVideoOutput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html#ae678f2681f89983b0f11f618159c7365">GeViAct_CrossSwitchEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html#a521e936cabc06a43a48443af0dc5e9c5">GeViAct_CrossSwitchEventArgs</a>(GeViAct_CrossSwitch^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercfa47926bc27dd88697ad702243ee35e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CrossSwitchEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GeViAct_QuitAlarmByInstanceEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html#a4f7686d7a342a84a0449af9224e616ff">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html#acfd2c65c89702da20f2473ff768f0f2f">aAlarmText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html#a4ed9dfa871dff596544b4facfc2f51b3">aClientID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html#ac9de8b873284e59e59ea3fd025f58d7c">GeViAct_QuitAlarmByInstanceEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html#a15867da691c3c80edd45b218790185d8">GeViAct_QuitAlarmByInstanceEventArgs</a>(GeViAct_QuitAlarmByInstance^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3bbbff857f7a265d77b9ab0ea5be526e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_QuitAlarmByInstanceEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html">GeViAct_UserLoginEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher0bc9c5810f42b1c0194c00bd0705a644.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a49c0716dfb3c439dfec1fa65f513780a">GeViAct_UserLoginEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___user_login.html">GeViAct_UserLogin</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'User has logged in.'. <a href="#a49c0716dfb3c439dfec1fa65f513780a"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViTGeViPort&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a3854c338e8a63c8e2ded15520df58fbc">aPort</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Port, where the login was realized. <a href="#a3854c338e8a63c8e2ded15520df58fbc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a7012a29e75eec06adb5ce6c3e3fb0c69">aUser1</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the first user. <a href="#a7012a29e75eec06adb5ce6c3e3fb0c69"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a7e474761edb785b2d75e78bfad7dad61">aUser2</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Name of the second user or empty, if not he do not exist. <a href="#a7e474761edb785b2d75e78bfad7dad61"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">String^ &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#af10fadc62a78cd3d86965fa07ff60951">aHost</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Hostname or address. <a href="#af10fadc62a78cd3d86965fa07ff60951"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16d2cf51ed71ab4fb3e027f99aa8aa4f.html#a0918b48ac3ef5b3e92911db764ae5536">GeViAct_UserLoginEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'User has logged in.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a0918b48ac3ef5b3e92911db764ae5536"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::GeViAct_UserLoginEventArgs" ref="a0918b48ac3ef5b3e92911db764ae5536" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::GeViAct_UserLoginEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a49c0716dfb3c439dfec1fa65f513780a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::GeViAct_UserLoginEventArgs" ref="a49c0716dfb3c439dfec1fa65f513780a" args="(GeViAct_UserLogin^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_UserLoginEventArgs::GeViAct_UserLoginEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_1_ge_vi_act___user_login.html">GeViAct_UserLogin</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'User has logged in.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'User has logged in.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="af10fadc62a78cd3d86965fa07ff60951"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aHost" ref="af10fadc62a78cd3d86965fa07ff60951" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aHost</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Hostname or address. </p>
</div>
</div>
<a class="anchor" id="a3854c338e8a63c8e2ded15520df58fbc"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aPort" ref="a3854c338e8a63c8e2ded15520df58fbc" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViTGeViPort GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aPort</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Port, where the login was realized. </p>
</div>
</div>
<a class="anchor" id="a7012a29e75eec06adb5ce6c3e3fb0c69"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aUser1" ref="a7012a29e75eec06adb5ce6c3e3fb0c69" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aUser1</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the first user. </p>
</div>
</div>
<a class="anchor" id="a7e474761edb785b2d75e78bfad7dad61"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aUser2" ref="a7e474761edb785b2d75e78bfad7dad61" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">String^ GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_UserLoginEventArgs::aUser2</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Name of the second user or empty, if not he do not exist. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GeViAct_CameraSpec1FuncOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html#aa1bbbc71a30875c50416e8df30a4a3ca">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html#a9b3d1a49fb4cf391417d943bd9454882">GeViAct_CameraSpec1FuncOnEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html#ac6417329710fe2fa4f11561e0531ec1e">GeViAct_CameraSpec1FuncOnEventArgs</a>(GeViAct_CameraSpec1FuncOn^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc2985a05e0a5afe2d627ccafb5bf5b8a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSpec1FuncOnEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html">GeViAct_CopyCameraOnMonitorEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc04c5ebb9ce927eac8bb752889d19aa5.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html#a8d70d5f2890102856b79e82efc67c5a0">GeViAct_CopyCameraOnMonitorEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac6912b04320b28f8ddc8df30f548f05d1.html">GeViAct_CopyCameraOnMonitor</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Copy a video input from one video output to another one.'. <a href="#a8d70d5f2890102856b79e82efc67c5a0"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoOutputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html#a9dbb96e9a5caa7ea0f5bd0cbbd88916b">aVideoOutputFrom</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Video output to copy from. <a href="#a9dbb96e9a5caa7ea0f5bd0cbbd88916b"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoOutputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html#a30d3f6f831851911243efb8f207f148d">aVideoOutputTo</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Video output to copy to. <a href="#a30d3f6f831851911243efb8f207f148d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f2c45731042181e247e261c19c0b82.html#a6dfbb92de399996751129f30a8c753b7">GeViAct_CopyCameraOnMonitorEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Copy a video input from one video output to another one.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a6dfbb92de399996751129f30a8c753b7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::GeViAct_CopyCameraOnMonitorEventArgs" ref="a6dfbb92de399996751129f30a8c753b7" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::GeViAct_CopyCameraOnMonitorEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a8d70d5f2890102856b79e82efc67c5a0"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::GeViAct_CopyCameraOnMonitorEventArgs" ref="a8d70d5f2890102856b79e82efc67c5a0" args="(GeViAct_CopyCameraOnMonitor^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_CopyCameraOnMonitorEventArgs::GeViAct_CopyCameraOnMonitorEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac6912b04320b28f8ddc8df30f548f05d1.html">GeViAct_CopyCameraOnMonitor</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Copy a video input from one video output to another one.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Copy a video input from one video output to another one.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a9dbb96e9a5caa7ea0f5bd0cbbd88916b"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::aVideoOutputFrom" ref="a9dbb96e9a5caa7ea0f5bd0cbbd88916b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoOutputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::aVideoOutputFrom</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Video output to copy from. </p>
</div>
</div>
<a class="anchor" id="a30d3f6f831851911243efb8f207f148d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::aVideoOutputTo" ref="a30d3f6f831851911243efb8f207f148d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoOutputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CopyCameraOnMonitorEventArgs::aVideoOutputTo</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Video output to copy to. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GeViAct_VSAlarmInFieldEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a1c4eac0378b141ad8d164fa833f532dc">aField</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#aa9459b7b7c005433b1b2b6d2ccb00abb">aMeasureTime</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a52380fda83d4c2e6a4bb858041161cbd">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a122dd90045071093c4f5b5e6bec53f7f">GeViAct_VSAlarmInFieldEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#ae1ddcb1a5ef032d15b8b73bbf846ecca">GeViAct_VSAlarmInFieldEventArgs</a>(GeViAct_VSAlarmInField^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GeViAct_AlarmRetriggeredEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html#a6df4152ec870a46cb5dd8122ef974768">aAckCleared</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html#a329bf93bd89d172f7b3d58a71c6b2fc4">aAlarmID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html#a5393a807ad161a1cd0e9ae883b816df4">GeViAct_AlarmRetriggeredEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html#a895310cc3a969d5864bcac4b9b63c9e9">GeViAct_AlarmRetriggeredEventArgs</a>(GeViAct_AlarmRetriggered^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherd866931aba56756c10bf58e26c67833a.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_AlarmRetriggeredEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GeViAct_MBegAlarmQuitEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html#ab8350803751b30905e3d7d8372f0fbc5">aTo</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html#ac63d66f68dc86701e9558fdd82240ed2">aUp</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html#a62f1215e0df7e887b83b7ea978683553">GeViAct_MBegAlarmQuitEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html#aa518fa9d6a7e25e8ea88ad7e2bd6b484">GeViAct_MBegAlarmQuitEventArgs</a>(GeViAct_MBegAlarmQuit^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher289695fa04157aabc2caed66b967754f.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegAlarmQuitEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GeViAct_MIPAuxiliaryAlarmStateEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#ae0377b07ca3b8a92fefc9bab8cc40142">aAlarmState</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#a453a08a4f0f776b5381bc028fa821f81">aInterfaceID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#a932ea4e8f16ef5e565df188e568077c6">aUnit</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#ae8dd27fcd29c004f7e4235b0de13e2af">aUnitType</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#ac13bb003ad988f4de3ae7c91c47fc1ea">GeViAct_MIPAuxiliaryAlarmStateEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html#a90f29fd759dbf294dff8b4ef45b90892">GeViAct_MIPAuxiliaryAlarmStateEventArgs</a>(GeViAct_MIPAuxiliaryAlarmState^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher58141cab0ee0d3d9badd99c97b41feef.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPAuxiliaryAlarmStateEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GeViAct_FocusNearEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20a1a3181079c897da34f68ac3245062.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a419dae5eaa29208135491afdf95ff59e">GeViAct_FocusNearEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2821f4193a41354478779781300ba03f.html">GeViAct_FocusNear</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Set camera focus nearer'. <a href="#a419dae5eaa29208135491afdf95ff59e"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a0c4cb8c9d0e1f33221f1b613c5daad17">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input to set nearer. <a href="#a0c4cb8c9d0e1f33221f1b613c5daad17"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#aabf6ea3a8ae31a8d321fa7d4e6c5788a">aTemp</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Speed of focus change (0 = standard) <a href="#aabf6ea3a8ae31a8d321fa7d4e6c5788a"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a41e78b569ccb69396680f510f79de9e8">GeViAct_FocusNearEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Set camera focus nearer'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a41e78b569ccb69396680f510f79de9e8"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::GeViAct_FocusNearEventArgs" ref="a41e78b569ccb69396680f510f79de9e8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::GeViAct_FocusNearEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a419dae5eaa29208135491afdf95ff59e"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::GeViAct_FocusNearEventArgs" ref="a419dae5eaa29208135491afdf95ff59e" args="(GeViAct_FocusNear^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_FocusNearEventArgs::GeViAct_FocusNearEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_ac2821f4193a41354478779781300ba03f.html">GeViAct_FocusNear</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Set camera focus nearer'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Set camera focus nearer'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="aabf6ea3a8ae31a8d321fa7d4e6c5788a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::aTemp" ref="aabf6ea3a8ae31a8d321fa7d4e6c5788a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::aTemp</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Speed of focus change (0 = standard) </p>
</div>
</div>
<a class="anchor" id="a0c4cb8c9d0e1f33221f1b613c5daad17"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::aVideoInput" ref="a0c4cb8c9d0e1f33221f1b613c5daad17" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input to set nearer. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GeViAct_MBegLockCameraEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a95551e8135020f9e0dcaae3048de8db2">aClient</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a93d074caca36b888a9fec02ba2c865b8">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a9b7894824924aa4af7e14b52650bfca3">GeViAct_MBegLockCameraEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html#a3479c033603a0f4c91a5a779c81062ba">GeViAct_MBegLockCameraEventArgs</a>(GeViAct_MBegLockCamera^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher079fca95b04ff2ac27c3231d3b95ef1c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MBegLockCameraEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b554a10f8561089bb628f68e7a27f4e.html">GeViAct_IlluminatorLightOffEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9f19609d751e71cdf2cf5415b532836c.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b554a10f8561089bb628f68e7a27f4e.html#a0ef259eff5e8921b13568991a5f9db31">GeViAct_IlluminatorLightOffEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiocbe7e48fbb6673d9e32b2f03067424ff.html">GeViAct_IlluminatorLightOff</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn off the illuminator light'. <a href="#a0ef259eff5e8921b13568991a5f9db31"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b554a10f8561089bb628f68e7a27f4e.html#a7c00f35866c1f30d9e06dabface56419">aIlluminator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the illuminator, which light shall be turned off. <a href="#a7c00f35866c1f30d9e06dabface56419"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b554a10f8561089bb628f68e7a27f4e.html#a6aa2b94e67b2d4b033cdae9802be8e18">GeViAct_IlluminatorLightOffEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn off the illuminator light'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a6aa2b94e67b2d4b033cdae9802be8e18"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs::GeViAct_IlluminatorLightOffEventArgs" ref="a6aa2b94e67b2d4b033cdae9802be8e18" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs::GeViAct_IlluminatorLightOffEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a0ef259eff5e8921b13568991a5f9db31"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs::GeViAct_IlluminatorLightOffEventArgs" ref="a0ef259eff5e8921b13568991a5f9db31" args="(GeViAct_IlluminatorLightOff^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_IlluminatorLightOffEventArgs::GeViAct_IlluminatorLightOffEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actiocbe7e48fbb6673d9e32b2f03067424ff.html">GeViAct_IlluminatorLightOff</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn off the illuminator light'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn off the illuminator light'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a7c00f35866c1f30d9e06dabface56419"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs::aIlluminator" ref="a7c00f35866c1f30d9e06dabface56419" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorLightOffEventArgs::aIlluminator</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the illuminator, which light shall be turned off. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b869e2783f4cd886da5be97f891cd04.html">GeViAct_IlluminatorGetDimLevelEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchercf2a262b2b50b8809616ceead6623af4.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b869e2783f4cd886da5be97f891cd04.html#aaf1a24c9c1785e84de5021e126cb1fba">GeViAct_IlluminatorGetDimLevelEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio0005475de81c062135c4f675553ff9c0.html">GeViAct_IlluminatorGetDimLevel</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Get the dim level of the illuminator'. <a href="#aaf1a24c9c1785e84de5021e126cb1fba"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b869e2783f4cd886da5be97f891cd04.html#ad65482bf2a12ac5a0673de5cdac4224f">aIlluminator</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the used illuminator. <a href="#ad65482bf2a12ac5a0673de5cdac4224f"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b869e2783f4cd886da5be97f891cd04.html#abb6a55be4a282a78e54fe4c479b8522c">GeViAct_IlluminatorGetDimLevelEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Get the dim level of the illuminator'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="abb6a55be4a282a78e54fe4c479b8522c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs::GeViAct_IlluminatorGetDimLevelEventArgs" ref="abb6a55be4a282a78e54fe4c479b8522c" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs::GeViAct_IlluminatorGetDimLevelEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aaf1a24c9c1785e84de5021e126cb1fba"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs::GeViAct_IlluminatorGetDimLevelEventArgs" ref="aaf1a24c9c1785e84de5021e126cb1fba" args="(GeViAct_IlluminatorGetDimLevel^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_IlluminatorGetDimLevelEventArgs::GeViAct_IlluminatorGetDimLevelEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_illuminator_actio0005475de81c062135c4f675553ff9c0.html">GeViAct_IlluminatorGetDimLevel</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Get the dim level of the illuminator'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Get the dim level of the illuminator'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ad65482bf2a12ac5a0673de5cdac4224f"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs::aIlluminator" ref="ad65482bf2a12ac5a0673de5cdac4224f" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_IlluminatorGetDimLevelEventArgs::aIlluminator</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of the used illuminator. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b9994328bdd4c5fe7c7261e999c6a33.html">GeViAct_VSTimerResetEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb6f02f8881a0ea437f9fdaa71ac34203.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b9994328bdd4c5fe7c7261e999c6a33.html#a966e9f65439daa88416b399230ae6c91">GeViAct_VSTimerResetEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actide27e705e1ce6c29f0652d6d83604fb0.html">GeViAct_VSTimerReset</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Resez timer of aVMD.'. <a href="#a966e9f65439daa88416b399230ae6c91"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b9994328bdd4c5fe7c7261e999c6a33.html#aaf401367a763ed30859472ffa7822a1a">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input (VMD/1) <a href="#aaf401367a763ed30859472ffa7822a1a"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1b9994328bdd4c5fe7c7261e999c6a33.html#a5a2b777c608f192e5365abc4b7d68640">GeViAct_VSTimerResetEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Resez timer of aVMD.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a5a2b777c608f192e5365abc4b7d68640"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs::GeViAct_VSTimerResetEventArgs" ref="a5a2b777c608f192e5365abc4b7d68640" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs::GeViAct_VSTimerResetEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a966e9f65439daa88416b399230ae6c91"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs::GeViAct_VSTimerResetEventArgs" ref="a966e9f65439daa88416b399230ae6c91" args="(GeViAct_VSTimerReset^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSTimerResetEventArgs::GeViAct_VSTimerResetEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_actide27e705e1ce6c29f0652d6d83604fb0.html">GeViAct_VSTimerReset</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Resez timer of aVMD.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Resez timer of aVMD.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="aaf401367a763ed30859472ffa7822a1a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs::aVideoInput" ref="aaf401367a763ed30859472ffa7822a1a" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSTimerResetEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input (VMD/1) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GeViAct_VideoThresholdRequestEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#adaaaabb1503fcd5723f1136b68ea7726">aClient</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a68e32aebe785b27906f9b1ef9b226ce0">aInternal1</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a698f94dd5ec178b41587b178bf1de1e9">aInternal2</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#ad5eda58f46efe18622b3a59bf3d70383">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a8e578330fabb18e1104ae840cde5e6ea">GeViAct_VideoThresholdRequestEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a7fc11fa665ded2738b33425d9f0ba460">GeViAct_VideoThresholdRequestEventArgs</a>(GeViAct_VideoThresholdRequest^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1d1420de2fc6fa5676d1d22f8007cb53.html">GeViAct_MIPOnlineEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher3b7fb6213404100fcf5a2aa7bb44d6b1.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1d1420de2fc6fa5676d1d22f8007cb53.html#a4815b34ed9b9a5ddb6c601787a367e5d">GeViAct_MIPOnlineEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_online.html">GeViAct_MIPOnline</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MIP interface online'. <a href="#a4815b34ed9b9a5ddb6c601787a367e5d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1d1420de2fc6fa5676d1d22f8007cb53.html#a8f6af3d64c5ad84d6ddab2566c3a6848">aInterfaceID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the corresponding GeMIP. <a href="#a8f6af3d64c5ad84d6ddab2566c3a6848"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1d1420de2fc6fa5676d1d22f8007cb53.html#a0d730914302c5cb288c1e3ea2df12af4">GeViAct_MIPOnlineEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MIP interface online'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a0d730914302c5cb288c1e3ea2df12af4"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs::GeViAct_MIPOnlineEventArgs" ref="a0d730914302c5cb288c1e3ea2df12af4" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs::GeViAct_MIPOnlineEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a4815b34ed9b9a5ddb6c601787a367e5d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs::GeViAct_MIPOnlineEventArgs" ref="a4815b34ed9b9a5ddb6c601787a367e5d" args="(GeViAct_MIPOnline^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MIPOnlineEventArgs::GeViAct_MIPOnlineEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1_ge_vi_act___m_i_p_online.html">GeViAct_MIPOnline</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MIP interface online'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MIP interface online'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a8f6af3d64c5ad84d6ddab2566c3a6848"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs::aInterfaceID" ref="a8f6af3d64c5ad84d6ddab2566c3a6848" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPOnlineEventArgs::aInterfaceID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the corresponding GeMIP. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GeViAct_CameraStopAllEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html#ab9383fbb1b5dbfcef75ca343d8659097">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html#a8c0356e155309bd797f6aa16d189073f">GeViAct_CameraStopAllEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html#a442fe0055ac4b10ba9fc7cb73f586a09">GeViAct_CameraStopAllEventArgs</a>(GeViAct_CameraStopAll^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatchere118c1ea0dc16df3460876f6028bd216.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraStopAllEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GeViAct_CameraSetCameraTextEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html#a297f44677f8d1c190fa5bd3a077da998">aText</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html#afb952307369742cae20603f9abb2a98a">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html#a56b004ad7e3d598897ded5e4fb6bef87">GeViAct_CameraSetCameraTextEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html#a6fdb78347a46e702a3721540c3263aef">GeViAct_CameraSetCameraTextEventArgs</a>(GeViAct_CameraSetCameraText^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher55aa2e793ef7d17341fc0cf603cf336c.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraSetCameraTextEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GeViAct_DefaultPosCallUpEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html#a5b9d32e4ae6bacc29b3f94fb860a1aa7">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html#aaeaae49da1f1140f88d6ed673c3d4267">GeViAct_DefaultPosCallUpEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html#a190a4996e96d11f3b3ae0ce3710cbcbb">GeViAct_DefaultPosCallUpEventArgs</a>(GeViAct_DefaultPosCallUp^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherc8598fc773e5903eb6c88f59d7a359e8.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_DefaultPosCallUpEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,210 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html">GeViAct_VideoThresholdRequestEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1c859978ccccb5d3bb17e338de162122.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a7fc11fa665ded2738b33425d9f0ba460">GeViAct_VideoThresholdRequestEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_aca9de56d76a3c622fef7105e231dfb5fb.html">GeViAct_VideoThresholdRequest</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Internal action requests the threshold value of an input'. <a href="#a7fc11fa665ded2738b33425d9f0ba460"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#adaaaabb1503fcd5723f1136b68ea7726">aClient</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the VSM. <a href="#adaaaabb1503fcd5723f1136b68ea7726"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a68e32aebe785b27906f9b1ef9b226ce0">aInternal1</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Internal parameter. <a href="#a68e32aebe785b27906f9b1ef9b226ce0"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int64&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a698f94dd5ec178b41587b178bf1de1e9">aInternal2</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Internal parameter. <a href="#a698f94dd5ec178b41587b178bf1de1e9"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#ad5eda58f46efe18622b3a59bf3d70383">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Local video input on VSM. <a href="#ad5eda58f46efe18622b3a59bf3d70383"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ef532d480902c0299a4cbe8706cd5c0.html#a8e578330fabb18e1104ae840cde5e6ea">GeViAct_VideoThresholdRequestEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Internal action requests the threshold value of an input'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a8e578330fabb18e1104ae840cde5e6ea"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::GeViAct_VideoThresholdRequestEventArgs" ref="a8e578330fabb18e1104ae840cde5e6ea" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::GeViAct_VideoThresholdRequestEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a7fc11fa665ded2738b33425d9f0ba460"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::GeViAct_VideoThresholdRequestEventArgs" ref="a7fc11fa665ded2738b33425d9f0ba460" args="(GeViAct_VideoThresholdRequest^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VideoThresholdRequestEventArgs::GeViAct_VideoThresholdRequestEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_aca9de56d76a3c622fef7105e231dfb5fb.html">GeViAct_VideoThresholdRequest</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Internal action requests the threshold value of an input'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Internal action requests the threshold value of an input'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="adaaaabb1503fcd5723f1136b68ea7726"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aClient" ref="adaaaabb1503fcd5723f1136b68ea7726" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aClient</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the VSM. </p>
</div>
</div>
<a class="anchor" id="a68e32aebe785b27906f9b1ef9b226ce0"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aInternal1" ref="a68e32aebe785b27906f9b1ef9b226ce0" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aInternal1</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Internal parameter. </p>
</div>
</div>
<a class="anchor" id="a698f94dd5ec178b41587b178bf1de1e9"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aInternal2" ref="a698f94dd5ec178b41587b178bf1de1e9" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int64 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aInternal2</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Internal parameter. </p>
</div>
</div>
<a class="anchor" id="ad5eda58f46efe18622b3a59bf3d70383"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aVideoInput" ref="ad5eda58f46efe18622b3a59bf3d70383" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VideoThresholdRequestEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Local video input on VSM. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GeViAct_NormalModeOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher213ad56b21f0c556e8ec3204f1a25172.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a41d3aa58398e62241500e878d949dbd3">GeViAct_NormalModeOnEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acadbd2074dc114cc4d6a8fd9224406869.html">GeViAct_NormalModeOn</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Turn on normal mode'. <a href="#a41d3aa58398e62241500e878d949dbd3"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a6a2982981cee90eed5c61e2bbe9ba57b">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of input, where the normal mode shall be activated. <a href="#a6a2982981cee90eed5c61e2bbe9ba57b"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a00c9898eee66022660fb0389d1c227fb">GeViAct_NormalModeOnEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Turn on normal mode'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a00c9898eee66022660fb0389d1c227fb"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs::GeViAct_NormalModeOnEventArgs" ref="a00c9898eee66022660fb0389d1c227fb" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs::GeViAct_NormalModeOnEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a41d3aa58398e62241500e878d949dbd3"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs::GeViAct_NormalModeOnEventArgs" ref="a41d3aa58398e62241500e878d949dbd3" args="(GeViAct_NormalModeOn^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_NormalModeOnEventArgs::GeViAct_NormalModeOnEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_camera_control_acadbd2074dc114cc4d6a8fd9224406869.html">GeViAct_NormalModeOn</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Turn on normal mode'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Turn on normal mode'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a6a2982981cee90eed5c61e2bbe9ba57b"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs::aVideoInput" ref="a6a2982981cee90eed5c61e2bbe9ba57b" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of input, where the normal mode shall be activated. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GeViAct_VSChooseSavedPictureEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html#aa5cbc02a6928cbbaf9d1d604e2d110db">aSavedPicture</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html#aca67c1d2cffb0f240525ffea8785f7db">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html#ae631521d73afa7123a6802f5c2af829f">GeViAct_VSChooseSavedPictureEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html#a15c1f1dd53fe6a6ce3c5cce5c4a355de">GeViAct_VSChooseSavedPictureEventArgs</a>(GeViAct_VSChooseSavedPicture^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherb8ad437bb6008a30fdee86184e9e1467.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSChooseSavedPictureEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,85 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GeViAct_FocusNearEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#aabf6ea3a8ae31a8d321fa7d4e6c5788a">aTemp</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a0c4cb8c9d0e1f33221f1b613c5daad17">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a41e78b569ccb69396680f510f79de9e8">GeViAct_FocusNearEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html#a419dae5eaa29208135491afdf95ff59e">GeViAct_FocusNearEventArgs</a>(GeViAct_FocusNear^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1ad63309d5ab5e159d406730650a2d35.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_FocusNearEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20b3c555186d5bb649de3136d0296895.html">GeViAct_MonitorGroupEnableEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher760e81a27c3a4caa30a89814ae4e909e.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20b3c555186d5bb649de3136d0296895.html#a6464051e3517eb9d7e9fbf91431dc8be">GeViAct_MonitorGroupEnableEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act102e974098ece949bb5c1e53b85c10e4.html">GeViAct_MonitorGroupEnable</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Enable monitor group'. <a href="#a6464051e3517eb9d7e9fbf91431dc8be"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViMGID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20b3c555186d5bb649de3136d0296895.html#ab1e483e2c402c036366de062760db472">aMonitorGroup</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Which monitor group (ID) <a href="#ab1e483e2c402c036366de062760db472"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher20b3c555186d5bb649de3136d0296895.html#ac3d1066dd30126c85eee5c0d9000462f">GeViAct_MonitorGroupEnableEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Enable monitor group'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="ac3d1066dd30126c85eee5c0d9000462f"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs::GeViAct_MonitorGroupEnableEventArgs" ref="ac3d1066dd30126c85eee5c0d9000462f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs::GeViAct_MonitorGroupEnableEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="a6464051e3517eb9d7e9fbf91431dc8be"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs::GeViAct_MonitorGroupEnableEventArgs" ref="a6464051e3517eb9d7e9fbf91431dc8be" args="(GeViAct_MonitorGroupEnable^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MonitorGroupEnableEventArgs::GeViAct_MonitorGroupEnableEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_act102e974098ece949bb5c1e53b85c10e4.html">GeViAct_MonitorGroupEnable</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Enable monitor group'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Enable monitor group'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ab1e483e2c402c036366de062760db472"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs::aMonitorGroup" ref="ab1e483e2c402c036366de062760db472" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViMGID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MonitorGroupEnableEventArgs::aMonitorGroup</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Which monitor group (ID) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GeViAct_OpenContactEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html#a58003b76021ee80fa9226afb2ec817e7">aGlobalContactID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html#aab79fa3855c6388d2a0452fd1600c555">GeViAct_OpenContactEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html#af11ae8d13f6942375f8243ed77797d46">GeViAct_OpenContactEventArgs</a>(GeViAct_OpenContact^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher43792574a73f7d5ae74891817029f280.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_OpenContactEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GeViAct_NormalModeOnEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a6a2982981cee90eed5c61e2bbe9ba57b">aVideoInput</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a00c9898eee66022660fb0389d1c227fb">GeViAct_NormalModeOnEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html#a41d3aa58398e62241500e878d949dbd3">GeViAct_NormalModeOnEventArgs</a>(GeViAct_NormalModeOn^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher1f1f5a6ff4e4bbb17f710271bdd00a4e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_NormalModeOnEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html">GeViAct_MIPRMTamperAlarmStateEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher633a8b6c10c55a21cccd5269fee1aa29.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html#ada2760c5f50e3bb084e9c0f6e9807a5c">GeViAct_MIPRMTamperAlarmStateEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1fc0014a0bce3848a5defaece625d42be.html">GeViAct_MIPRMTamperAlarmState</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MIP RM tamper alarm state'. <a href="#ada2760c5f50e3bb084e9c0f6e9807a5c"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html#af709d56869ee6a6b67372c9bce4d0d76">aInterfaceID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the corresponding GeMIP. <a href="#af709d56869ee6a6b67372c9bce4d0d76"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html#a55a168f926daad9f0fcc459bcaa59313">aUnit</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unit no. <a href="#a55a168f926daad9f0fcc459bcaa59313"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html#ad2b1aab50e7babd95f884194afb73982">aAlarmState</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current alarm state: 0 - normal, 1 - alarm. <a href="#ad2b1aab50e7babd95f884194afb73982"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher221e9ff77484dd3d16f4bfccf4bd1bb0.html#a28724c577fd9eee3485f1abc813f03be">GeViAct_MIPRMTamperAlarmStateEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MIP RM tamper alarm state'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a28724c577fd9eee3485f1abc813f03be"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::GeViAct_MIPRMTamperAlarmStateEventArgs" ref="a28724c577fd9eee3485f1abc813f03be" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::GeViAct_MIPRMTamperAlarmStateEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ada2760c5f50e3bb084e9c0f6e9807a5c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::GeViAct_MIPRMTamperAlarmStateEventArgs" ref="ada2760c5f50e3bb084e9c0f6e9807a5c" args="(GeViAct_MIPRMTamperAlarmState^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MIPRMTamperAlarmStateEventArgs::GeViAct_MIPRMTamperAlarmStateEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1fc0014a0bce3848a5defaece625d42be.html">GeViAct_MIPRMTamperAlarmState</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MIP RM tamper alarm state'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MIP RM tamper alarm state'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="ad2b1aab50e7babd95f884194afb73982"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aAlarmState" ref="ad2b1aab50e7babd95f884194afb73982" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aAlarmState</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Current alarm state: 0 - normal, 1 - alarm. </p>
</div>
</div>
<a class="anchor" id="af709d56869ee6a6b67372c9bce4d0d76"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aInterfaceID" ref="af709d56869ee6a6b67372c9bce4d0d76" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aInterfaceID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the corresponding GeMIP. </p>
</div>
</div>
<a class="anchor" id="a55a168f926daad9f0fcc459bcaa59313"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aUnit" ref="a55a168f926daad9f0fcc459bcaa59313" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPRMTamperAlarmStateEventArgs::aUnit</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unit no. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html">GeViAct_VSAlarmInFieldEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher16f549ea4368c7463e15de7ebae96710.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#ae1ddcb1a5ef032d15b8b73bbf846ecca">GeViAct_VSAlarmInFieldEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3e47c67e6c6b87beb3ae622a7490e37a.html">GeViAct_VSAlarmInField</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Alarm in a field'. <a href="#ae1ddcb1a5ef032d15b8b73bbf846ecca"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a52380fda83d4c2e6a4bb858041161cbd">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input (VMD/Input) <a href="#a52380fda83d4c2e6a4bb858041161cbd"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a1c4eac0378b141ad8d164fa833f532dc">aField</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">field number (1-64) <a href="#a1c4eac0378b141ad8d164fa833f532dc"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Byte&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#aa9459b7b7c005433b1b2b6d2ccb00abb">aMeasureTime</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Measure time (A-E) <a href="#aa9459b7b7c005433b1b2b6d2ccb00abb"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher229a7f5d2ecb3f6403e5793cc421c608.html#a122dd90045071093c4f5b5e6bec53f7f">GeViAct_VSAlarmInFieldEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Alarm in a field'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a122dd90045071093c4f5b5e6bec53f7f"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::GeViAct_VSAlarmInFieldEventArgs" ref="a122dd90045071093c4f5b5e6bec53f7f" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::GeViAct_VSAlarmInFieldEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ae1ddcb1a5ef032d15b8b73bbf846ecca"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::GeViAct_VSAlarmInFieldEventArgs" ref="ae1ddcb1a5ef032d15b8b73bbf846ecca" args="(GeViAct_VSAlarmInField^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSAlarmInFieldEventArgs::GeViAct_VSAlarmInFieldEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti3e47c67e6c6b87beb3ae622a7490e37a.html">GeViAct_VSAlarmInField</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Alarm in a field'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Alarm in a field'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a1c4eac0378b141ad8d164fa833f532dc"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aField" ref="a1c4eac0378b141ad8d164fa833f532dc" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aField</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>field number (1-64) </p>
</div>
</div>
<a class="anchor" id="aa9459b7b7c005433b1b2b6d2ccb00abb"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aMeasureTime" ref="aa9459b7b7c005433b1b2b6d2ccb00abb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Byte GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aMeasureTime</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Measure time (A-E) </p>
</div>
</div>
<a class="anchor" id="a52380fda83d4c2e6a4bb858041161cbd"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aVideoInput" ref="a52380fda83d4c2e6a4bb858041161cbd" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSAlarmInFieldEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input (VMD/Input) </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html">GeViAct_MIPPMComFailStateEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher821c288561646b9420d7331ac43521f2.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html#aaa6fe701303770bd7792e9745519190a">GeViAct_MIPPMComFailStateEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1be7a8793e16e3b339702aacdb11dcb56.html">GeViAct_MIPPMComFailState</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'MIP PM COM failure state'. <a href="#aaa6fe701303770bd7792e9745519190a"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html#a201eb17cf837a26998e3c9c6e6b2f3b7">aInterfaceID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Interface ID of the corresponding GeMIP. <a href="#a201eb17cf837a26998e3c9c6e6b2f3b7"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html#a781d8293faaf754c078950b711e9648c">aUnit</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Unit no. <a href="#a781d8293faaf754c078950b711e9648c"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html#a16a6e5fbbcfe5700ae2f1a303edc112c">aState</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Current failure state: 0 - normal, 1 - failure. <a href="#a16a6e5fbbcfe5700ae2f1a303edc112c"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2332536497421aaf53a90e82565ea558.html#abf808f3296c2df0d2ade8eaa8d4e6367">GeViAct_MIPPMComFailStateEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'MIP PM COM failure state'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="abf808f3296c2df0d2ade8eaa8d4e6367"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::GeViAct_MIPPMComFailStateEventArgs" ref="abf808f3296c2df0d2ade8eaa8d4e6367" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::GeViAct_MIPPMComFailStateEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="aaa6fe701303770bd7792e9745519190a"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::GeViAct_MIPPMComFailStateEventArgs" ref="aaa6fe701303770bd7792e9745519190a" args="(GeViAct_MIPPMComFailState^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_MIPPMComFailStateEventArgs::GeViAct_MIPPMComFailStateEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_m_i_p_actions_1_1be7a8793e16e3b339702aacdb11dcb56.html">GeViAct_MIPPMComFailState</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'MIP PM COM failure state'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'MIP PM COM failure state'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a201eb17cf837a26998e3c9c6e6b2f3b7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aInterfaceID" ref="a201eb17cf837a26998e3c9c6e6b2f3b7" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aInterfaceID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Interface ID of the corresponding GeMIP. </p>
</div>
</div>
<a class="anchor" id="a16a6e5fbbcfe5700ae2f1a303edc112c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aState" ref="a16a6e5fbbcfe5700ae2f1a303edc112c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aState</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Current failure state: 0 - normal, 1 - failure. </p>
</div>
</div>
<a class="anchor" id="a781d8293faaf754c078950b711e9648c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aUnit" ref="a781d8293faaf754c078950b711e9648c" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPPMComFailStateEventArgs::aUnit</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Unit no. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GeViAct_CameraCycleStopEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html#ac00881c6246d43f064494eb211f243fc">aMonitorID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html#aef391533c5b71a05041f9be83cadff3c">GeViAct_CameraCycleStopEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html#a7714dc3b59068c052ed9b352349848a3">GeViAct_CameraCycleStopEventArgs</a>(GeViAct_CameraCycleStop^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherbfbcd1b97c714c68de21f551d8e60d50.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_CameraCycleStopEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher23896b4a440f535feb1095ac6889c780.html">GeViAct_ClearAlarmFlagVideoInputEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher398c3dd6183205eb8c8a120774b4c6cb.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher23896b4a440f535feb1095ac6889c780.html#ad14bea37111b77dac799775311489b9c">GeViAct_ClearAlarmFlagVideoInputEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac0f8f3dedf0e6d3e3a47afb18541ec58b.html">GeViAct_ClearAlarmFlagVideoInput</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Clear the alam flag of a video input. - Attention - the video input will not cleared.'. <a href="#ad14bea37111b77dac799775311489b9c"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher23896b4a440f535feb1095ac6889c780.html#a800d084741378b083fe61e0f942ac94d">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input. <a href="#a800d084741378b083fe61e0f942ac94d"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher23896b4a440f535feb1095ac6889c780.html#a4b4ef66fa753dcb0d5df391d4dfd3d36">GeViAct_ClearAlarmFlagVideoInputEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Clear the alam flag of a video input. - Attention - the video input will not cleared.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a4b4ef66fa753dcb0d5df391d4dfd3d36"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs::GeViAct_ClearAlarmFlagVideoInputEventArgs" ref="a4b4ef66fa753dcb0d5df391d4dfd3d36" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs::GeViAct_ClearAlarmFlagVideoInputEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="ad14bea37111b77dac799775311489b9c"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs::GeViAct_ClearAlarmFlagVideoInputEventArgs" ref="ad14bea37111b77dac799775311489b9c" args="(GeViAct_ClearAlarmFlagVideoInput^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_ClearAlarmFlagVideoInputEventArgs::GeViAct_ClearAlarmFlagVideoInputEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_switch_control_ac0f8f3dedf0e6d3e3a47afb18541ec58b.html">GeViAct_ClearAlarmFlagVideoInput</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Clear the alam flag of a video input. - Attention - the video input will not cleared.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Clear the alam flag of a video input. - Attention - the video input will not cleared.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a800d084741378b083fe61e0f942ac94d"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs::aVideoInput" ref="a800d084741378b083fe61e0f942ac94d" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ClearAlarmFlagVideoInputEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,138 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher242683de64e2045bef3cc9153357f78b.html">GeViAct_ActionDataCorruptEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher8b93c7e3f95575607045549b09d10348.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher242683de64e2045bef3cc9153357f78b.html#abdb36dcb1030e602e1ff4fce89547aad">GeViAct_ActionDataCorruptEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_b7007199eb34b78bc3793b766d075de2.html">GeViAct_ActionDataCorrupt</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'The action data can not be found in the data base.'. <a href="#abdb36dcb1030e602e1ff4fce89547aad"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher242683de64e2045bef3cc9153357f78b.html#abcd95fd32241a440b5fffe1bd468ab31">GeViAct_ActionDataCorruptEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'The action data can not be found in the data base.'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="abcd95fd32241a440b5fffe1bd468ab31"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs::GeViAct_ActionDataCorruptEventArgs" ref="abcd95fd32241a440b5fffe1bd468ab31" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs::GeViAct_ActionDataCorruptEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="abdb36dcb1030e602e1ff4fce89547aad"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionDataCorruptEventArgs::GeViAct_ActionDataCorruptEventArgs" ref="abdb36dcb1030e602e1ff4fce89547aad" args="(GeViAct_ActionDataCorrupt^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_ActionDataCorruptEventArgs::GeViAct_ActionDataCorruptEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_system_actions_1_b7007199eb34b78bc3793b766d075de2.html">GeViAct_ActionDataCorrupt</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'The action data can not be found in the data base.'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'The action data can not be found in the data base.'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,193 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html">GeViAct_PopUpAlarmEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcherab561490d889dd7eca02ea68ffb7a0cf.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html#abb3dd2db2bc97620d791c571a7e3ddc7">GeViAct_PopUpAlarmEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actc7f89282b6e762db5c0d044bb88a1533.html">GeViAct_PopUpAlarm</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Display alarm'. <a href="#abb3dd2db2bc97620d791c571a7e3ddc7"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViMGID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html#a4475820bc30a69d8a03306af5e16fa49">aMonitorGroup</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">To which monitor group. <a href="#a4475820bc30a69d8a03306af5e16fa49"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViClientID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html#aeff6fa2462b132f20ddf4275b283e834">aUserID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Automatic adaption of the user, which has caused the move. <a href="#aeff6fa2462b132f20ddf4275b283e834"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViAlarmID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html#a984e0629336f38b3504fefc2800952b0">aAlarmID</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Instance ID of the alarm. <a href="#a984e0629336f38b3504fefc2800952b0"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher24d37a7fbebe66a335e08e50a1166a6c.html#a9388d361eef7ccdbe06bdeb55bba0ae0">GeViAct_PopUpAlarmEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Display alarm'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a9388d361eef7ccdbe06bdeb55bba0ae0"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::GeViAct_PopUpAlarmEventArgs" ref="a9388d361eef7ccdbe06bdeb55bba0ae0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::GeViAct_PopUpAlarmEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="abb3dd2db2bc97620d791c571a7e3ddc7"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::GeViAct_PopUpAlarmEventArgs" ref="abb3dd2db2bc97620d791c571a7e3ddc7" args="(GeViAct_PopUpAlarm^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_PopUpAlarmEventArgs::GeViAct_PopUpAlarmEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_alarm_control_actc7f89282b6e762db5c0d044bb88a1533.html">GeViAct_PopUpAlarm</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Display alarm'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Display alarm'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="a984e0629336f38b3504fefc2800952b0"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aAlarmID" ref="a984e0629336f38b3504fefc2800952b0" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAlarmID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aAlarmID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Instance ID of the alarm. </p>
</div>
</div>
<a class="anchor" id="a4475820bc30a69d8a03306af5e16fa49"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aMonitorGroup" ref="a4475820bc30a69d8a03306af5e16fa49" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViMGID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aMonitorGroup</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>To which monitor group. </p>
</div>
</div>
<a class="anchor" id="aeff6fa2462b132f20ddf4275b283e834"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aUserID" ref="aeff6fa2462b132f20ddf4275b283e834" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViClientID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_PopUpAlarmEventArgs::aUserID</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Automatic adaption of the user, which has caused the move. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,86 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GeViAct_MIPSecureLUEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html#a314d92baf740cad15b9fdd7527fd9e5d">aInterfaceID</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html#a1fde6415172b214a3b3bc05f9419d576">aStatus</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html#a5affc5c626f38cd43d379fa41e2c469b">aUnit</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html#a0dcd34dc03c7559473be21339cc8f30f">GeViAct_MIPSecureLUEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html#af25b53a9201fac587a0d6a498acab197">GeViAct_MIPSecureLUEventArgs</a>(GeViAct_MIPSecureLU^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher2a336edf3e4c65d57616fbf0b9c616ff.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_MIPSecureLUEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,84 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GeViAct_ActionByNameEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs Member List</div> </div>
</div>
<div class="contents">
This is the complete list of members for <a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs</a>, including all inherited members.<table>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html#a49209e2650f9e5e512b95a1f9f2bf885">aActionName</a></td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs</a></td><td></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html#aafaef7c4e4071524b3987aa2713105fc">GeViAct_ActionByNameEventArgs</a>()</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs</a></td><td><code> [private]</code></td></tr>
<tr class="memlist"><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html#af51cc5880fe34dd667ebc11d6fc9892a">GeViAct_ActionByNameEventArgs</a>(GeViAct_ActionByName^ initAction)</td><td><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher9b6e60d43003848a4aed7fa1fbe52b7e.html">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_ActionByNameEventArgs</a></td><td></td></tr>
</table></div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:00 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

View File

@@ -0,0 +1,176 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>Geutebrueck GeViSoftSDK .NET Wrapper: GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="label_geutebrueck_sdk_small.png"/></td>
<td style="padding-left: 0.5em;">
<div id="projectname">Geutebrueck GeViSoftSDK .NET Wrapper
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5.1 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class&#160;List</span></a></li>
<li><a href="classes.html"><span>Class&#160;Index</span></a></li>
<li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class&#160;Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>GEUTEBRUECK</b> </li>
<li class="navelem"><b>GeViSoftSDKNET</b> </li>
<li class="navelem"><b>ActionsWrapper</b> </li>
<li class="navelem"><b>ActionDispatcher</b> </li>
<li class="navelem"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html">GeViAct_VSSetSensorModeEventArgs</a> </li>
</ul>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#properties">Properties</a> &#124;
<a href="#pri-methods">Private Member Functions</a> </div>
<div class="headertitle">
<div class="title">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs Class Reference<div class="ingroups"><a class="el" href="group__eventhandlers.html">Event Handlers and Event Arguments</a></div></div> </div>
</div>
<div class="contents">
<!-- doxytag: class="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs" -->
<p><a href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher74b9402b197bfa5b6f0d76335042553a.html">List of all members.</a></p>
<table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html#abba6f93d4e0495cb7d0b2d5f2566dda1">GeViAct_VSSetSensorModeEventArgs</a> (<a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti472fc799d4453547c160ccfd294f8784.html">GeViAct_VSSetSensorMode</a>^ initAction)</td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the EventArgs for handler of action 'Set mode of the sensor'. <a href="#abba6f93d4e0495cb7d0b2d5f2566dda1"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="properties"></a>
Properties</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">GeViVideoInputID&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html#a824b2fcd54fe07df65fb6bfc629641cf">aVideoInput</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of video input. <a href="#a824b2fcd54fe07df65fb6bfc629641cf"></a><br/></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">Int32&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html#aee702ddaf7141399b74411161ebb64bb">aMode</a></td></tr>
<tr><td class="mdescLeft">&#160;</td><td class="mdescRight">Can be 1, 2, 3, or 4. <a href="#aee702ddaf7141399b74411161ebb64bb"></a><br/></td></tr>
<tr><td colspan="2"><h2><a name="pri-methods"></a>
Private Member Functions</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_action_dispatcher27acc9dedd0d7dbc7315ed402c537947.html#a0a02d95e7a9f2a145292daef76a04010">GeViAct_VSSetSensorModeEventArgs</a> ()</td></tr>
</table>
<hr/><a name="details" id="details"></a><h2>Detailed Description</h2>
<div class="textblock"><p>EventArgs for handler of action 'Set mode of the sensor'. </p>
</div><hr/><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a0a02d95e7a9f2a145292daef76a04010"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::GeViAct_VSSetSensorModeEventArgs" ref="a0a02d95e7a9f2a145292daef76a04010" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::GeViAct_VSSetSensorModeEventArgs </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td><code> [private]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
</div>
</div>
<a class="anchor" id="abba6f93d4e0495cb7d0b2d5f2566dda1"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::GeViAct_VSSetSensorModeEventArgs" ref="abba6f93d4e0495cb7d0b2d5f2566dda1" args="(GeViAct_VSSetSensorMode^ initAction)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViAct_VSSetSensorModeEventArgs::GeViAct_VSSetSensorModeEventArgs </td>
<td>(</td>
<td class="paramtype"><a class="el" href="class_g_e_u_t_e_b_r_u_e_c_k_1_1_ge_vi_soft_s_d_k_n_e_t_1_1_actions_wrapper_1_1_video_sensor_acti472fc799d4453547c160ccfd294f8784.html">GeViAct_VSSetSensorMode</a>^&#160;</td>
<td class="paramname"><em>initAction</em></td><td>)</td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Create the EventArgs for handler of action 'Set mode of the sensor'. </p>
<dl><dt><b>Parameters:</b></dt><dd>
<table class="params">
<tr><td class="paramname">initAction</td><td>Managed action 'Set mode of the sensor'.</td></tr>
</table>
</dd>
</dl>
</div>
</div>
<hr/><h2>Property Documentation</h2>
<a class="anchor" id="aee702ddaf7141399b74411161ebb64bb"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::aMode" ref="aee702ddaf7141399b74411161ebb64bb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Int32 GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::aMode</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>Can be 1, 2, 3, or 4. </p>
</div>
</div>
<a class="anchor" id="a824b2fcd54fe07df65fb6bfc629641cf"></a><!-- doxytag: member="GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::aVideoInput" ref="a824b2fcd54fe07df65fb6bfc629641cf" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GeViVideoInputID GEUTEBRUECK::GeViSoftSDKNET::ActionsWrapper::ActionDispatcher::GeViAct_VSSetSensorModeEventArgs::aVideoInput</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>ID of video input. </p>
</div>
</div>
</div>
<hr class="footer"/><address class="footer"><small>
Generated on Fri Dec 9 2011 11:16:01 for Geutebrueck GeViSoftSDK .NET Wrapper by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5.1
</small></address>
</body>
</html>

Some files were not shown because too many files have changed in this diff Show More