-
Notifications
You must be signed in to change notification settings - Fork 16
Server APIs – Aras.Server.Core.AccessControl
Eric Domke edited this page Apr 6, 2020
·
1 revision
Aras.Server.Core v12.0.0.17204
- EnvironmentAttribute
- EnvironmentAttributeEvaluationException
- EnvironmentAttributeExecutionContext
- IEnvironmentAttributeMethod
- InvalidEnvironmentAttributeTypeException
Inheritance object → EnvironmentAttribute
public sealed class EnvironmentAttribute
{
// Properties
public Type DotNetType { get; }
public string Name { get; }
// Methods
public void SetValue(object value);
}
Inheritance object → Exception → EnvironmentAttributeEvaluationException
Attributes Serializable
[Serializable()]
public sealed class EnvironmentAttributeEvaluationException : Exception
{
// Constructors
public EnvironmentAttributeEvaluationException();
public EnvironmentAttributeEvaluationException(string message);
public EnvironmentAttributeEvaluationException(string message, Exception innerException);
// Properties
public string EnvironmentAttributeName { get; }
// Methods
public void GetObjectData(SerializationInfo info, StreamingContext context);
}
Inheritance object → EnvironmentAttributeExecutionContext
public class EnvironmentAttributeExecutionContext
{
// Constructors
public EnvironmentAttributeExecutionContext();
}
public interface IEnvironmentAttributeMethod
{
// Methods
public void Execute(EnvironmentAttribute attribute, EnvironmentAttributeExecutionContext context);
}
Inheritance object → Exception → InvalidEnvironmentAttributeTypeException
Attributes Serializable
[Serializable()]
public sealed class InvalidEnvironmentAttributeTypeException : Exception
{
// Constructors
public InvalidEnvironmentAttributeTypeException();
public InvalidEnvironmentAttributeTypeException(string message);
public InvalidEnvironmentAttributeTypeException(string message, Exception innerException);
}