Org.IdentityConnectors.Framework.Common.Objects.Schema.GetSupportedOptionsByOperation C# (CSharp) Method

GetSupportedOptionsByOperation() public method

Returns the supported options for the given operation.
public GetSupportedOptionsByOperation ( SafeType apiop ) : ICollection
apiop SafeType The operation.
return ICollection
        public ICollection<OperationOptionInfo> GetSupportedOptionsByOperation(SafeType<APIOperation> apiop)
        {
            ICollection<OperationOptionInfo> rv =
                CollectionUtil.GetValue(_supportedOptionsByOperation, apiop, null);
            if (rv == null)
            {
                ICollection<OperationOptionInfo> empty =
                    CollectionUtil.NewReadOnlySet<OperationOptionInfo>();
                return empty;
            }
            else
            {
                return rv;
            }
        }